diff --git a/en/book.js b/en/book.js index d06a12c..79d4035 100644 --- a/en/book.js +++ b/en/book.js @@ -169,9 +169,9 @@ function playground_text(playground) { Array code_nodes .filter(function (node) {return !node.classList.contains("editable"); }) - .forEach(function (block) { hljs.highlightElement(block); }); + .forEach(function (block) { hljs.highlightBlock(block); }); } else { - code_nodes.forEach(function (block) { hljs.highlightElement(block); }); + code_nodes.forEach(function (block) { hljs.highlightBlock(block); }); } // Adding the hljs class gives code blocks the color css diff --git a/en/column-renderer.html b/en/column-renderer.html index 9539c38..5fee1f8 100644 --- a/en/column-renderer.html +++ b/en/column-renderer.html @@ -306,7 +306,7 @@ node. It will instead be null.

  • size
  • human_size
  • -

    Example

    +

    Example: Customizing Table Renderer

    xplr.fn.custom.fmt_simple_column = function(m)
       return m.prefix .. m.relative_path .. m.suffix
     end
    diff --git a/en/highlight.js b/en/highlight.js
    index 5ce5f28..180385b 100644
    --- a/en/highlight.js
    +++ b/en/highlight.js
    @@ -1,1333 +1,6 @@
    -/*!
    -  Highlight.js v11.0.0 (git: 21857218b9)
    -  (c) 2006-2021 Ivan Sagalaev and other contributors
    +/*
    +  Highlight.js 10.1.1 (93fd0d73)
       License: BSD-3-Clause
    - */
    -var hljs=function(){"use strict";var e={exports:{}};function n(e){
    -return e instanceof Map?e.clear=e.delete=e.set=()=>{
    -throw Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=()=>{
    -throw Error("set is read-only")
    -}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((s=>{var t=e[s]
    -;"object"!=typeof t||Object.isFrozen(t)||n(t)})),e}
    -e.exports=n,e.exports.default=n;var s=e.exports;class t{constructor(e){
    -void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}
    -ignoreMatch(){this.isMatchIgnored=!0}}function a(e){
    -return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")
    -}function i(e,...n){const s=Object.create(null);for(const n in e)s[n]=e[n]
    -;return n.forEach((e=>{for(const n in e)s[n]=e[n]})),s}const r=e=>!!e.kind
    -;class o{constructor(e,n){
    -this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){
    -this.buffer+=a(e)}openNode(e){if(!r(e))return;let n=e.kind
    -;n=e.sublanguage?"language-"+n:((e,{prefix:n})=>{if(e.includes(".")){
    -const s=e.split(".")
    -;return[`${n}${s.shift()}`,...s.map(((e,n)=>`${e}${"_".repeat(n+1)}`))].join(" ")
    -}return`${n}${e}`})(n,{prefix:this.classPrefix}),this.span(n)}closeNode(e){
    -r(e)&&(this.buffer+="")}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 l 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 s=e.root
    -;s.kind=n,s.sublanguage=!0,this.add(s)}toHTML(){
    -return new o(this,this.options).value()}finalize(){return!0}}function d(e){
    -return e?"string"==typeof e?e:e.source:null}function p(e){return u("(?=",e,")")}
    -function m(e){return u("(?:",e,")?")}function u(...e){
    -return e.map((e=>d(e))).join("")}function b(...e){return"("+((e=>{
    -const n=e[e.length-1]
    -;return"object"==typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}
    -})(e).capture?"":"?:")+e.map((e=>d(e))).join("|")+")"}function g(e){
    -return RegExp(e.toString()+"|").exec("").length-1}
    -const v=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
    -;function _(e,{joinWith:n}){let s=0;return e.map((e=>{s+=1;const n=s
    -;let t=d(e),a="";for(;t.length>0;){const e=v.exec(t);if(!e){a+=t;break}
    -a+=t.substring(0,e.index),
    -t=t.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?a+="\\"+(Number(e[1])+n):(a+=e[0],
    -"("===e[0]&&s++)}return a})).map((e=>`(${e})`)).join(n)}
    -const f="[a-zA-Z]\\w*",h="[a-zA-Z_]\\w*",E="\\b\\d+(\\.\\d+)?",w="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",N="\\b(0b[01]+)",y={
    -begin:"\\\\[\\s\\S]",relevance:0},x={scope:"string",begin:"'",end:"'",
    -illegal:"\\n",contains:[y]},O={scope:"string",begin:'"',end:'"',illegal:"\\n",
    -contains:[y]},M=(e,n,s={})=>{const t=i({scope:"comment",begin:e,end:n,
    -contains:[]},s);t.contains.push({scope:"doctag",
    -begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",
    -end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0})
    -;const a=b("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/)
    -;return t.contains.push({begin:u(/[ ]+/,"(",a,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),t
    -},A=M("//","$"),k=M("/\\*","\\*/"),S=M("#","$");var C=Object.freeze({
    -__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:f,UNDERSCORE_IDENT_RE:h,
    -NUMBER_RE:E,C_NUMBER_RE:w,BINARY_NUMBER_RE:N,
    -RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
    -SHEBANG:(e={})=>{const n=/^#![ ]*\//
    -;return e.binary&&(e.begin=u(n,/.*\b/,e.binary,/\b.*/)),i({scope:"meta",begin:n,
    -end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},
    -BACKSLASH_ESCAPE:y,APOS_STRING_MODE:x,QUOTE_STRING_MODE:O,PHRASAL_WORDS_MODE:{
    -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/
    -},COMMENT:M,C_LINE_COMMENT_MODE:A,C_BLOCK_COMMENT_MODE:k,HASH_COMMENT_MODE:S,
    -NUMBER_MODE:{scope:"number",begin:E,relevance:0},C_NUMBER_MODE:{scope:"number",
    -begin:w,relevance:0},BINARY_NUMBER_MODE:{scope:"number",begin:N,relevance:0},
    -REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,
    -end:/\/[gimuy]*/,illegal:/\n/,contains:[y,{begin:/\[/,end:/\]/,relevance:0,
    -contains:[y]}]}]},TITLE_MODE:{scope:"title",begin:f,relevance:0},
    -UNDERSCORE_TITLE_MODE:{scope:"title",begin:h,relevance:0},METHOD_GUARD:{
    -begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{
    -"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{
    -n.data._beginMatch!==e[1]&&n.ignoreMatch()}})});function q(e,n){
    -"."===e.input[e.index-1]&&n.ignoreMatch()}function T(e,n){
    -void 0!==e.className&&(e.scope=e.className,delete e.className)}function R(e,n){
    -n&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
    -e.__beforeBegin=q,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
    -void 0===e.relevance&&(e.relevance=0))}function D(e,n){
    -Array.isArray(e.illegal)&&(e.illegal=b(...e.illegal))}function I(e,n){
    -if(e.match){
    -if(e.begin||e.end)throw Error("begin & end are not supported with match")
    -;e.begin=e.match,delete e.match}}function L(e,n){
    -void 0===e.relevance&&(e.relevance=1)}const B=(e,n)=>{if(!e.beforeMatch)return
    -;if(e.starts)throw Error("beforeMatch cannot be used with starts")
    -;const s=Object.assign({},e);Object.keys(e).forEach((n=>{delete e[n]
    -})),e.keywords=s.keywords,e.begin=u(s.beforeMatch,p(s.begin)),e.starts={
    -relevance:0,contains:[Object.assign(s,{endsParent:!0})]
    -},e.relevance=0,delete s.beforeMatch
    -},z=["of","and","for","in","not","or","if","then","parent","list","value"]
    -;function $(e,n,s="keyword"){const t=Object.create(null)
    -;return"string"==typeof e?a(s,e.split(" ")):Array.isArray(e)?a(s,e):Object.keys(e).forEach((s=>{
    -Object.assign(t,$(e[s],n,s))})),t;function a(e,s){
    -n&&(s=s.map((e=>e.toLowerCase()))),s.forEach((n=>{const s=n.split("|")
    -;t[s[0]]=[e,F(s[0],s[1])]}))}}function F(e,n){
    -return n?Number(n):(e=>z.includes(e.toLowerCase()))(e)?0:1}const U={},j=e=>{
    -console.error(e)},P=(e,...n)=>{console.log("WARN: "+e,...n)},K=(e,n)=>{
    -U[`${e}/${n}`]||(console.log(`Deprecated as of ${e}. ${n}`),U[`${e}/${n}`]=!0)
    -},H=Error();function G(e,n,{key:s}){let t=0;const a=e[s],i={},r={}
    -;for(let e=1;e<=n.length;e++)r[e+t]=a[e],i[e+t]=!0,t+=g(n[e-1])
    -;e[s]=r,e[s]._emit=i,e[s]._multi=!0}function Z(e){(e=>{
    -e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,
    -delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={
    -_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope
    -}),(e=>{if(Array.isArray(e.begin)){
    -if(e.skip||e.excludeBegin||e.returnBegin)throw j("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),
    -H
    -;if("object"!=typeof e.beginScope||null===e.beginScope)throw j("beginScope must be object"),
    -H;G(e,e.begin,{key:"beginScope"}),e.begin=_(e.begin,{joinWith:""})}})(e),(e=>{
    -if(Array.isArray(e.end)){
    -if(e.skip||e.excludeEnd||e.returnEnd)throw j("skip, excludeEnd, returnEnd not compatible with endScope: {}"),
    -H
    -;if("object"!=typeof e.endScope||null===e.endScope)throw j("endScope must be object"),
    -H;G(e,e.end,{key:"endScope"}),e.end=_(e.end,{joinWith:""})}})(e)}function W(e){
    -function n(n,s){return RegExp(d(n),"m"+(e.case_insensitive?"i":"")+(s?"g":""))}
    -class s{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+=g(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null)
    -;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(_(e,{joinWith:"|"
    -}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex
    -;const n=this.matcherRe.exec(e);if(!n)return null
    -;const s=n.findIndex(((e,n)=>n>0&&void 0!==e)),t=this.matchIndexes[s]
    -;return n.splice(0,s),Object.assign(n,t)}}class t{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 s
    -;return this.rules.slice(e).forEach((([e,s])=>n.addRule(e,s))),
    -n.compile(),this.multiRegexes[e]=n,n}resumingScanAtSamePosition(){
    -return 0!==this.regexIndex}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
    -;let s=n.exec(e)
    -;if(this.resumingScanAtSamePosition())if(s&&s.index===this.lastIndex);else{
    -const n=this.getMatcher(0);n.lastIndex=this.lastIndex+1,s=n.exec(e)}
    -return s&&(this.regexIndex+=s.position+1,
    -this.regexIndex===this.count&&this.considerAll()),s}}
    -if(e.compilerExtensions||(e.compilerExtensions=[]),
    -e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language.  See documentation.")
    -;return e.classNameAliases=i(e.classNameAliases||{}),function s(a,r){const o=a
    -;if(a.isCompiled)return o
    -;[T,I,Z,B].forEach((e=>e(a,r))),e.compilerExtensions.forEach((e=>e(a,r))),
    -a.__beforeBegin=null,[R,D,L].forEach((e=>e(a,r))),a.isCompiled=!0;let c=null
    -;return"object"==typeof a.keywords&&a.keywords.$pattern&&(a.keywords=Object.assign({},a.keywords),
    -c=a.keywords.$pattern,
    -delete a.keywords.$pattern),c=c||/\w+/,a.keywords&&(a.keywords=$(a.keywords,e.case_insensitive)),
    -o.keywordPatternRe=n(c,!0),
    -r&&(a.begin||(a.begin=/\B|\b/),o.beginRe=n(a.begin),a.end||a.endsWithParent||(a.end=/\B|\b/),
    -a.end&&(o.endRe=n(a.end)),
    -o.terminatorEnd=d(a.end)||"",a.endsWithParent&&r.terminatorEnd&&(o.terminatorEnd+=(a.end?"|":"")+r.terminatorEnd)),
    -a.illegal&&(o.illegalRe=n(a.illegal)),
    -a.contains||(a.contains=[]),a.contains=[].concat(...a.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((n=>i(e,{
    -variants:null},n)))),e.cachedVariants?e.cachedVariants:Q(e)?i(e,{
    -starts:e.starts?i(e.starts):null
    -}):Object.isFrozen(e)?i(e):e))("self"===e?a:e)))),a.contains.forEach((e=>{s(e,o)
    -})),a.starts&&s(a.starts,r),o.matcher=(e=>{const n=new t
    -;return e.contains.forEach((e=>n.addRule(e.begin,{rule:e,type:"begin"
    -}))),e.terminatorEnd&&n.addRule(e.terminatorEnd,{type:"end"
    -}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n})(o),o}(e)}function Q(e){
    -return!!e&&(e.endsWithParent||Q(e.starts))}const V=a,X=i,Y=Symbol("nomatch")
    -;var J=(e=>{const n=Object.create(null),a=Object.create(null),i=[];let r=!0
    -;const o="Could not find the language '{}', did you forget to load/include a language module?",c={
    -disableAutodetect:!0,name:"Plain text",contains:[]};let d={
    -ignoreUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,
    -languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",
    -cssSelector:"pre code",languages:null,__emitter:l};function p(e){
    -return d.noHighlightRe.test(e)}function m(e,n,s,t){let a="",i=""
    -;"object"==typeof n?(a=e,
    -s=n.ignoreIllegals,i=n.language,t=void 0):(K("10.7.0","highlight(lang, code, ...args) has been deprecated."),
    -K("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
    -i=e,a=n),void 0===s&&(s=!0);const r={code:a,language:i};w("before:highlight",r)
    -;const o=r.result?r.result:u(r.language,r.code,s,t)
    -;return o.code=r.code,w("after:highlight",o),o}function u(e,s,a,i){
    -const c=Object.create(null);function l(){if(!O.keywords)return void A.addText(k)
    -;let e=0;O.keywordPatternRe.lastIndex=0;let n=O.keywordPatternRe.exec(k),s=""
    -;for(;n;){s+=k.substring(e,n.index)
    -;const a=N.case_insensitive?n[0].toLowerCase():n[0],i=(t=a,O.keywords[t]);if(i){
    -const[e,t]=i
    -;if(A.addText(s),s="",c[a]=(c[a]||0)+1,c[a]<=7&&(S+=t),e.startsWith("_"))s+=n[0];else{
    -const s=N.classNameAliases[e]||e;A.addKeyword(n[0],s)}}else s+=n[0]
    -;e=O.keywordPatternRe.lastIndex,n=O.keywordPatternRe.exec(k)}var t
    -;s+=k.substr(e),A.addText(s)}function p(){null!=O.subLanguage?(()=>{
    -if(""===k)return;let e=null;if("string"==typeof O.subLanguage){
    -if(!n[O.subLanguage])return void A.addText(k)
    -;e=u(O.subLanguage,k,!0,M[O.subLanguage]),M[O.subLanguage]=e._top
    -}else e=b(k,O.subLanguage.length?O.subLanguage:null)
    -;O.relevance>0&&(S+=e.relevance),A.addSublanguage(e._emitter,e.language)
    -})():l(),k=""}function m(e,n){let s=1;for(;void 0!==n[s];){if(!e._emit[s]){s++
    -;continue}const t=N.classNameAliases[e[s]]||e[s],a=n[s]
    -;t?A.addKeyword(a,t):(k=a,l(),k=""),s++}}function g(e,n){
    -return e.scope&&"string"==typeof e.scope&&A.openNode(N.classNameAliases[e.scope]||e.scope),
    -e.beginScope&&(e.beginScope._wrap?(A.addKeyword(k,N.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),
    -k=""):e.beginScope._multi&&(m(e.beginScope,n),k="")),O=Object.create(e,{parent:{
    -value:O}}),O}function v(e,n,s){let a=((e,n)=>{const s=e&&e.exec(n)
    -;return s&&0===s.index})(e.endRe,s);if(a){if(e["on:end"]){const s=new t(e)
    -;e["on:end"](n,s),s.isMatchIgnored&&(a=!1)}if(a){
    -for(;e.endsParent&&e.parent;)e=e.parent;return e}}
    -if(e.endsWithParent)return v(e.parent,n,s)}function _(e){
    -return 0===O.matcher.regexIndex?(k+=e[0],1):(T=!0,0)}function h(e){
    -const n=e[0],t=s.substr(e.index),a=v(O,e,t);if(!a)return Y;const i=O
    -;O.endScope&&O.endScope._wrap?(p(),
    -A.addKeyword(n,O.endScope._wrap)):O.endScope&&O.endScope._multi?(p(),
    -m(O.endScope,e)):i.skip?k+=n:(i.returnEnd||i.excludeEnd||(k+=n),
    -p(),i.excludeEnd&&(k=n));do{
    -O.scope&&!O.isMultiClass&&A.closeNode(),O.skip||O.subLanguage||(S+=O.relevance),
    -O=O.parent}while(O!==a.parent)
    -;return a.starts&&g(a.starts,e),i.returnEnd?0:n.length}let E={};function w(n,i){
    -const o=i&&i[0];if(k+=n,null==o)return p(),0
    -;if("begin"===E.type&&"end"===i.type&&E.index===i.index&&""===o){
    -if(k+=s.slice(i.index,i.index+1),!r){const n=Error(`0 width match regex (${e})`)
    -;throw n.languageName=e,n.badRule=E.rule,n}return 1}
    -if(E=i,"begin"===i.type)return(e=>{
    -const n=e[0],s=e.rule,a=new t(s),i=[s.__beforeBegin,s["on:begin"]]
    -;for(const s of i)if(s&&(s(e,a),a.isMatchIgnored))return _(n)
    -;return s.skip?k+=n:(s.excludeBegin&&(k+=n),
    -p(),s.returnBegin||s.excludeBegin||(k=n)),g(s,e),s.returnBegin?0:n.length})(i)
    -;if("illegal"===i.type&&!a){
    -const e=Error('Illegal lexeme "'+o+'" for mode "'+(O.scope||"")+'"')
    -;throw e.mode=O,e}if("end"===i.type){const e=h(i);if(e!==Y)return e}
    -if("illegal"===i.type&&""===o)return 1
    -;if(q>1e5&&q>3*i.index)throw Error("potential infinite loop, way more iterations than matches")
    -;return k+=o,o.length}const N=f(e)
    -;if(!N)throw j(o.replace("{}",e)),Error('Unknown language: "'+e+'"')
    -;const y=W(N);let x="",O=i||y;const M={},A=new d.__emitter(d);(()=>{const e=[]
    -;for(let n=O;n!==N;n=n.parent)n.scope&&e.unshift(n.scope)
    -;e.forEach((e=>A.openNode(e)))})();let k="",S=0,C=0,q=0,T=!1;try{
    -for(O.matcher.considerAll();;){
    -q++,T?T=!1:O.matcher.considerAll(),O.matcher.lastIndex=C
    -;const e=O.matcher.exec(s);if(!e)break;const n=w(s.substring(C,e.index),e)
    -;C=e.index+n}return w(s.substr(C)),A.closeAllNodes(),A.finalize(),x=A.toHTML(),{
    -language:e,value:x,relevance:S,illegal:!1,_emitter:A,_top:O}}catch(n){
    -if(n.message&&n.message.includes("Illegal"))return{language:e,value:V(s),
    -illegal:!0,relevance:0,_illegalBy:{message:n.message,index:C,
    -context:s.slice(C-100,C+100),mode:n.mode,resultSoFar:x},_emitter:A};if(r)return{
    -language:e,value:V(s),illegal:!1,relevance:0,errorRaised:n,_emitter:A,_top:O}
    -;throw n}}function b(e,s){s=s||d.languages||Object.keys(n);const t=(e=>{
    -const n={value:V(e),illegal:!1,relevance:0,_top:c,_emitter:new d.__emitter(d)}
    -;return n._emitter.addText(e),n})(e),a=s.filter(f).filter(E).map((n=>u(n,e,!1)))
    -;a.unshift(t);const i=a.sort(((e,n)=>{
    -if(e.relevance!==n.relevance)return n.relevance-e.relevance
    -;if(e.language&&n.language){if(f(e.language).supersetOf===n.language)return 1
    -;if(f(n.language).supersetOf===e.language)return-1}return 0})),[r,o]=i,l=r
    -;return l.secondBest=o,l}function g(e){let n=null;const s=(e=>{
    -let n=e.className+" ";n+=e.parentNode?e.parentNode.className:""
    -;const s=d.languageDetectRe.exec(n);if(s){const n=f(s[1])
    -;return n||(P(o.replace("{}",s[1])),
    -P("Falling back to no-highlight mode for this block.",e)),n?s[1]:"no-highlight"}
    -return n.split(/\s+/).find((e=>p(e)||f(e)))})(e);if(p(s))return
    -;w("before:highlightElement",{el:e,language:s
    -}),!d.ignoreUnescapedHTML&&e.children.length>0&&(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),
    -console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),
    -console.warn(e)),n=e;const t=n.textContent,i=s?m(t,{language:s,ignoreIllegals:!0
    -}):b(t);e.innerHTML=i.value,((e,n,s)=>{const t=n&&a[n]||s
    -;e.classList.add("hljs"),e.classList.add("language-"+t)
    -})(e,s,i.language),e.result={language:i.language,re:i.relevance,
    -relevance:i.relevance},i.secondBest&&(e.secondBest={
    -language:i.secondBest.language,relevance:i.secondBest.relevance
    -}),w("after:highlightElement",{el:e,result:i,text:t})}let v=!1;function _(){
    -"loading"!==document.readyState?document.querySelectorAll(d.cssSelector).forEach(g):v=!0
    -}function f(e){return e=(e||"").toLowerCase(),n[e]||n[a[e]]}
    -function h(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
    -a[e.toLowerCase()]=n}))}function E(e){const n=f(e)
    -;return n&&!n.disableAutodetect}function w(e,n){const s=e;i.forEach((e=>{
    -e[s]&&e[s](n)}))}
    -"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{
    -v&&_()}),!1),Object.assign(e,{highlight:m,highlightAuto:b,highlightAll:_,
    -highlightElement:g,
    -highlightBlock:e=>(K("10.7.0","highlightBlock will be removed entirely in v12.0"),
    -K("10.7.0","Please use highlightElement now."),g(e)),configure:e=>{d=X(d,e)},
    -initHighlighting:()=>{
    -_(),K("10.6.0","initHighlighting() deprecated.  Use highlightAll() now.")},
    -initHighlightingOnLoad:()=>{
    -_(),K("10.6.0","initHighlightingOnLoad() deprecated.  Use highlightAll() now.")
    -},registerLanguage:(s,t)=>{let a=null;try{a=t(e)}catch(e){
    -if(j("Language definition for '{}' could not be registered.".replace("{}",s)),
    -!r)throw e;j(e),a=c}
    -a.name||(a.name=s),n[s]=a,a.rawDefinition=t.bind(null,e),a.aliases&&h(a.aliases,{
    -languageName:s})},unregisterLanguage:e=>{delete n[e]
    -;for(const n of Object.keys(a))a[n]===e&&delete a[n]},
    -listLanguages:()=>Object.keys(n),getLanguage:f,registerAliases:h,
    -autoDetection:E,inherit:X,addPlugin:e=>{(e=>{
    -e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=n=>{
    -e["before:highlightBlock"](Object.assign({block:n.el},n))
    -}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=n=>{
    -e["after:highlightBlock"](Object.assign({block:n.el},n))})})(e),i.push(e)}
    -}),e.debugMode=()=>{r=!1},e.safeMode=()=>{r=!0},e.versionString="11.0.0"
    -;for(const e in C)"object"==typeof C[e]&&s(C[e]);return Object.assign(e,C),e
    -})({});const ee=e=>({IMPORTANT:{scope:"meta",begin:"!important"},HEXCOLOR:{
    -scope:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},
    -ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
    -contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
    -scope:"number",
    -begin:e.NUMBER_RE+"(%|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}
    -}),ne=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],se=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],te=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],ae=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],ie=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse(),re=te.concat(ae)
    -;var oe="\\.([0-9](_*[0-9])*)",ce="[0-9a-fA-F](_*[0-9a-fA-F])*",le={
    -className:"number",variants:[{
    -begin:`(\\b([0-9](_*[0-9])*)((${oe})|\\.)?|(${oe}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
    -},{begin:`\\b([0-9](_*[0-9])*)((${oe})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
    -begin:`(${oe})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
    -begin:`\\b0[xX]((${ce})\\.?|(${ce})?\\.(${ce}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
    -},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${ce})[lL]?\\b`},{
    -begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
    -relevance:0};function de(e,n,s){return-1===s?"":e.replace(n,(t=>de(e,n,s-1)))}
    -const pe="[A-Za-z$_][0-9A-Za-z$_]*",me=["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"],ue=["true","false","null","undefined","NaN","Infinity"],be=["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","BigInt64Array","BigUint64Array","BigInt"],ge=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],ve=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],_e=["arguments","this","super","console","window","document","localStorage","module","global"],fe=[].concat(ve,be,ge)
    -;function he(e){const n=pe,s={begin:/<[A-Za-z0-9\\._:-]+/,
    -end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
    -const s=e[0].length+e.index,t=e.input[s];"<"!==t?">"===t&&(((e,{after:n})=>{
    -const s="",M={
    -match:[/const|var|let/,/\s+/,n,/\s*/,/=\s*/,p(O)],className:{1:"keyword",
    -3:"title.function"},contains:[_]};return{name:"Javascript",
    -aliases:["js","jsx","mjs","cjs"],keywords:t,exports:{PARAMS_CONTAINS:v},
    -illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",
    -relevance:5}),{label:"use_strict",className:"meta",relevance:10,
    -begin:/^\s*['"]use (strict|asm)['"]/
    -},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,l,d,m,r,h,{className:"attr",
    -begin:n+p(":"),relevance:0},M,{
    -begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
    -keywords:"return throw case",relevance:0,contains:[m,e.REGEXP_MODE,{
    -className:"function",begin:O,returnBegin:!0,end:"\\s*=>",contains:[{
    -className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{
    -className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,
    -excludeEnd:!0,keywords:t,contains:v}]}]},{begin:/,/,relevance:0},{match:/\s+/,
    -relevance:0},{variants:[{begin:"<>",end:""},{begin:s.begin,
    -"on:begin":s.isTrulyOpeningTag,end:s.end}],subLanguage:"xml",contains:[{
    -begin:s.begin,end:s.end,skip:!0,contains:["self"]}]}]},E,{
    -beginKeywords:"while if switch catch for"},{
    -begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
    -returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:n,
    -className:"title.function"})]},{match:/\.\.\./,relevance:0},y,{match:"\\$"+n,
    -relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
    -contains:[_]},w,{relevance:0,match:/\b[A-Z][A-Z_]+\b/,
    -className:"variable.constant"},f,x,{match:/\$[(.]/}]}}
    -const Ee=e=>u(/\b/,e,/\w$/.test(e)?/\b/:/\B/),we=["Protocol","Type"].map(Ee),Ne=["init","self"].map(Ee),ye=["Any","Self"],xe=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],Oe=["false","nil","true"],Me=["assignment","associativity","higherThan","left","lowerThan","none","right"],Ae=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],ke=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Se=b(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),Ce=b(Se,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),qe=u(Se,Ce,"*"),Te=b(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Re=b(Te,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),De=u(Te,Re,"*"),Ie=u(/[A-Z]/,Re,"*"),Le=["autoclosure",u(/convention\(/,b("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",u(/objc\(/,De,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],Be=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"]
    -;var ze=Object.freeze({__proto__:null,grmr_bash:e=>{const n={},s={begin:/\$\{/,
    -end:/\}/,contains:["self",{begin:/:-/,contains:[n]}]};Object.assign(n,{
    -className:"variable",variants:[{
    -begin:u(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},s]});const t={
    -className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a={
    -begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
    -end:/(\w+)/,className:"string"})]}},i={className:"string",begin:/"/,end:/"/,
    -contains:[e.BACKSLASH_ESCAPE,n,t]};t.contains.push(i);const r={begin:/\$\(\(/,
    -end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,n]
    -},o=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"],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"
    -},contains:[o,e.SHEBANG(),c,r,e.HASH_COMMENT_MODE,a,i,{className:"",begin:/\\"/
    -},{className:"string",begin:/'/,end:/'/},n]}},grmr_c:e=>{
    -const n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]
    -}),s="[a-zA-Z_]\\w*::",t="(decltype\\(auto\\)|"+m(s)+"[a-zA-Z_]\\w*"+m("<[^<>]+>")+")",a={
    -className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{
    -match:/\batomic_[a-z]{3,6}\b/}]},i={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})"/})]},r={
    -className:"number",variants:[{begin:"\\b(0b[01']+)"},{
    -begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
    -},{
    -begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
    -}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
    -keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
    -},contains:[{begin:/\\\n/,relevance:0},e.inherit(i,{className:"string"}),{
    -className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},c={
    -className:"title",begin:m(s)+e.IDENT_RE,relevance:0
    -},l=m(s)+e.IDENT_RE+"\\s*\\(",d={
    -keyword:["asm","auto","break","case","const","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","static","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],
    -type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","complex","bool","imaginary"],
    -literal:"true false NULL",
    -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"
    -},p=[o,a,n,e.C_BLOCK_COMMENT_MODE,r,i],u={variants:[{begin:/=/,end:/;/},{
    -begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
    -keywords:d,contains:p.concat([{begin:/\(/,end:/\)/,keywords:d,
    -contains:p.concat(["self"]),relevance:0}]),relevance:0},b={
    -begin:"("+t+"[\\*&\\s]+)+"+l,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
    -keywords:d,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
    -keywords:d,relevance:0},{begin:l,returnBegin:!0,contains:[e.inherit(c,{
    -className:"title.function"})],relevance:0},{relevance:0,match:/,/},{
    -className:"params",begin:/\(/,end:/\)/,keywords:d,relevance:0,
    -contains:[n,e.C_BLOCK_COMMENT_MODE,i,r,a,{begin:/\(/,end:/\)/,keywords:d,
    -relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,i,r,a]}]
    -},a,n,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C",aliases:["h"],keywords:d,
    -disableAutodetect:!0,illegal:"=]/,contains:[{
    -beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:o,
    -strings:i,keywords:d}}},grmr_cpp:e=>{const n=e.COMMENT("//","$",{contains:[{
    -begin:/\\\n/}]
    -}),s="[a-zA-Z_]\\w*::",t="(?!struct)(decltype\\(auto\\)|"+m(s)+"[a-zA-Z_]\\w*"+m("<[^<>]+>")+")",a={
    -className:"type",begin:"\\b[a-z\\d_]*_t\\b"},i={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})"/})]},r={
    -className:"number",variants:[{begin:"\\b(0b[01']+)"},{
    -begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
    -},{
    -begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
    -}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
    -keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
    -},contains:[{begin:/\\\n/,relevance:0},e.inherit(i,{className:"string"}),{
    -className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},c={
    -className:"title",begin:m(s)+e.IDENT_RE,relevance:0
    -},l=m(s)+e.IDENT_RE+"\\s*\\(",d={
    -type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t"],
    -keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","signed","sizeof","static","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","unsigned","using","virtual","volatile","while","xor","xor_eq,"],
    -literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],
    -_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]
    -},b={className:"function.dispatch",relevance:0,keywords:{
    -_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]
    -},
    -begin:u(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,e.IDENT_RE,p(/(<[^<>]+>|)\s*\(/))
    -},g=[b,o,a,n,e.C_BLOCK_COMMENT_MODE,r,i],v={variants:[{begin:/=/,end:/;/},{
    -begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
    -keywords:d,contains:g.concat([{begin:/\(/,end:/\)/,keywords:d,
    -contains:g.concat(["self"]),relevance:0}]),relevance:0},_={className:"function",
    -begin:"("+t+"[\\*&\\s]+)+"+l,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
    -keywords:d,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
    -keywords:d,relevance:0},{begin:l,returnBegin:!0,contains:[c],relevance:0},{
    -begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[i,r]},{
    -relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:d,
    -relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,i,r,a,{begin:/\(/,end:/\)/,
    -keywords:d,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,i,r,a]}]
    -},a,n,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C++",
    -aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:d,illegal:"",keywords:d,contains:["self",a]},{begin:e.IDENT_RE+"::",keywords:d},{
    -match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],
    -className:{1:"keyword",3:"title.class"}}])}},grmr_csharp:e=>{const n={
    -keyword:["abstract","as","base","break","case","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),
    -built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
    -literal:["default","false","null","true"]},s=e.inherit(e.TITLE_MODE,{
    -begin:"[a-zA-Z](\\.?\\w)*"}),t={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},a={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
    -},i=e.inherit(a,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/,
    -keywords:n},o=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/,
    -end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
    -},e.BACKSLASH_ESCAPE,o]},l={className:"string",begin:/\$@"/,end:'"',contains:[{
    -begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(l,{illegal:/\n/,
    -contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},o]})
    -;r.contains=[l,c,a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,t,e.C_BLOCK_COMMENT_MODE],
    -o.contains=[d,c,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,t,e.inherit(e.C_BLOCK_COMMENT_MODE,{
    -illegal:/\n/})];const p={variants:[l,c,a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
    -},m={begin:"<",end:">",contains:[{beginKeywords:"in out"},s]
    -},u=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:{
    -keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
    -}},p,t,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
    -illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
    -},s,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
    -relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
    -contains:[s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
    -beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
    -contains:[s,m,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
    -begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
    -className:"string",begin:/"/,end:/"/}]},{
    -beginKeywords:"new return throw await else",relevance:0},{className:"function",
    -begin:"("+u+"\\s+)+"+e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
    -end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
    -beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
    -relevance:0},{begin:e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
    -contains:[e.TITLE_MODE,m],relevance:0},{className:"params",begin:/\(/,end:/\)/,
    -excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
    -contains:[p,t,e.C_BLOCK_COMMENT_MODE]
    -},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}},grmr_css:e=>{
    -const n=ee(e),s=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",
    -case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},
    -classNameAliases:{keyframePosition:"selector-tag"},
    -contains:[e.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/
    -},n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0
    -},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0
    -},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{
    -begin:":("+te.join("|")+")"},{begin:"::("+ae.join("|")+")"}]},{
    -className:"attribute",begin:"\\b("+ie.join("|")+")\\b"},{begin:":",end:"[;}]",
    -contains:[n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...s,{
    -begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"
    -},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]
    -},{className:"built_in",begin:/[\w-]+(?=\()/}]},{begin:p(/@/),end:"[{;]",
    -relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/
    -},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{
    -$pattern:/[a-z-]+/,keyword:"and or not only",attribute:se.join(" ")},contains:[{
    -begin:/[a-z-]+(?=:)/,className:"attribute"},...s,n.CSS_NUMBER_MODE]}]},{
    -className:"selector-tag",begin:"\\b("+ne.join("|")+")\\b"}]}},grmr_diff:e=>({
    -name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,
    -match:b(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)
    -},{className:"comment",variants:[{
    -begin:b(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),
    -end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{
    -className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,
    -end:/$/}]}),grmr_go:e=>{const 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:"{const n={
    -className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{
    -begin:e.NUMBER_RE}]},s=e.COMMENT();s.variants=[{begin:/;/,end:/$/},{begin:/#/,
    -end:/$/}];const t={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{
    -begin:/\$\{(.*?)\}/}]},a={className:"literal",
    -begin:/\bon|off|true|false|yes|no\b/},i={className:"string",
    -contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{
    -begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]
    -},r={begin:/\[/,end:/\]/,contains:[s,a,t,i,n,"self"],relevance:0
    -},o=b(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{name:"TOML, also INI",
    -aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[s,{
    -className:"section",begin:/\[+/,end:/\]+/},{
    -begin:u(o,"(\\s*\\.\\s*",o,")*",p(/\s*=\s*[^#\s]/)),className:"attr",starts:{
    -end:/$/,contains:[s,r,a,t,i,n]}}]}},grmr_java:e=>{
    -const n="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",s=n+de("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),t={
    -keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do"],
    -literal:["false","true","null"],
    -type:["char","boolean","long","float","int","byte","short","double"],
    -built_in:["super","this"]},a={className:"meta",begin:"@"+n,contains:[{
    -begin:/\(/,end:/\)/,contains:["self"]}]},i={className:"params",begin:/\(/,
    -end:/\)/,keywords:t,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!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]+"}]}),{
    -begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
    -},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
    -match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{
    -1:"keyword",3:"title.class"}},{begin:[n,/\s+/,n,/\s+/,/=/],className:{1:"type",
    -3:"variable",5:"operator"}},{begin:[/record/,/\s+/,n],className:{1:"keyword",
    -3:"title.class"},contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
    -beginKeywords:"new throw return else",relevance:0},{
    -begin:["(?:"+s+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
    -2:"title.function"},keywords:t,contains:[{className:"params",begin:/\(/,
    -end:/\)/,keywords:t,relevance:0,
    -contains:[a,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,le,e.C_BLOCK_COMMENT_MODE]
    -},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},le,a]}},grmr_javascript:he,
    -grmr_json:e=>({name:"JSON",contains:[{className:"attr",
    -begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/,
    -className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,{
    -beginKeywords:"true false null"
    -},e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}),
    -grmr_kotlin:e=>{const 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",
    -built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",
    -literal:"true false null"},s={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"
    -},t={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},a={
    -className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},i={className:"string",
    -variants:[{begin:'"""',end:'"""(?=[^"])',contains:[a,t]},{begin:"'",end:"'",
    -illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,
    -contains:[e.BACKSLASH_ESCAPE,a,t]}]};t.contains.push(i);const r={
    -className:"meta",
    -begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"
    -},o={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,
    -end:/\)/,contains:[e.inherit(i,{className:"string"})]}]
    -},c=le,l=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),d={
    -variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,
    -contains:[]}]},p=d;return p.variants[1].contains=[d],d.variants[1].contains=[p],
    -{name:"Kotlin",aliases:["kt","kts"],keywords:n,
    -contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",
    -begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,l,{className:"keyword",
    -begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",
    -begin:/@\w+/}]}},s,r,o,{className:"function",beginKeywords:"fun",end:"[(]|$",
    -returnBegin:!0,excludeEnd:!0,keywords:n,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:[d,e.C_LINE_COMMENT_MODE,l],relevance:0
    -},e.C_LINE_COMMENT_MODE,l,r,o,i,e.C_NUMBER_MODE]},l]},{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,o]},i,{className:"meta",begin:"^#!/usr/bin/env",
    -end:"$",illegal:"\n"},c]}},grmr_less:e=>{
    -const n=ee(e),s=re,t="([\\w-]+|@\\{[\\w-]+\\})",a=[],i=[],r=e=>({
    -className:"string",begin:"~?"+e+".*?"+e}),o=(e,n,s)=>({className:e,begin:n,
    -relevance:s}),c={$pattern:/[a-z-]+/,keyword:"and or not only",
    -attribute:se.join(" ")},l={begin:"\\(",end:"\\)",contains:i,keywords:c,
    -relevance:0}
    -;i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,r("'"),r('"'),n.CSS_NUMBER_MODE,{
    -begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",
    -excludeEnd:!0}
    -},n.HEXCOLOR,l,o("variable","@@?[\\w-]+",10),o("variable","@\\{[\\w-]+\\}"),o("built_in","~?`[^`]*?`"),{
    -className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0
    -},n.IMPORTANT);const d=i.concat({begin:/\{/,end:/\}/,contains:a}),p={
    -beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"
    -}].concat(i)},m={begin:t+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,
    -contains:[{begin:/-(webkit|moz|ms|o)-/},{className:"attribute",
    -begin:"\\b("+ie.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,
    -illegal:"[<=$]",relevance:0,contains:i}}]},u={className:"keyword",
    -begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",
    -starts:{end:"[;{}]",keywords:c,returnEnd:!0,contains:i,relevance:0}},b={
    -className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{
    -begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:d}},g={variants:[{
    -begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:t,end:/\{/}],returnBegin:!0,
    -returnEnd:!0,illegal:"[<='$\"]",relevance:0,
    -contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,p,o("keyword","all\\b"),o("variable","@\\{[\\w-]+\\}"),{
    -begin:"\\b("+ne.join("|")+")\\b",className:"selector-tag"
    -},o("selector-tag",t+"%?",0),o("selector-id","#"+t),o("selector-class","\\."+t,0),o("selector-tag","&",0),n.ATTRIBUTE_SELECTOR_MODE,{
    -className:"selector-pseudo",begin:":("+te.join("|")+")"},{
    -className:"selector-pseudo",begin:"::("+ae.join("|")+")"},{begin:/\(/,end:/\)/,
    -relevance:0,contains:d},{begin:"!important"}]},v={
    -begin:`[\\w-]+:(:)?(${s.join("|")})`,returnBegin:!0,contains:[g]}
    -;return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,u,b,v,m,g),{
    -name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:a}},grmr_lua:e=>{
    -const n="\\[=*\\[",s="\\]=*\\]",t={begin:n,end:s,contains:["self"]
    -},a=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",s,{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:n,end:s,contains:[t],relevance:5}])}},grmr_makefile:e=>{const n={
    -className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",
    -contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%{
    -const n=u(/[A-Z_]/,m(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s={className:"symbol",
    -begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},t={begin:/\s/,contains:[{
    -className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=e.inherit(t,{
    -begin:/\(/,end:/\)/}),i=e.inherit(e.APOS_STRING_MODE,{className:"string"
    -}),r=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),o={endsWithParent:!0,
    -illegal:/`]+/}]}]}]};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:[t,r,i,a,{begin:/\[/,end:/\]/,contains:[{className:"meta",
    -begin://,contains:[t,a,r,i]}]}]},e.COMMENT(//,{
    -relevance:10}),{begin://,relevance:10},s,{
    -className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",
    -begin:/)/,end:/>/,keywords:{name:"style"},contains:[o],starts:{
    -end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
    -begin:/)/,end:/>/,keywords:{name:"script"},contains:[o],starts:{
    -end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
    -className:"tag",begin:/<>|<\/>/},{className:"tag",
    -begin:u(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",
    -begin:n,relevance:0,starts:o}]},{className:"tag",begin:u(/<\//,p(u(n,/>/))),
    -contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,
    -endsParent:!0}]}]}},grmr_markdown:e=>{const n={begin:/<\/?[A-Za-z_]/,end:">",
    -subLanguage:"xml",relevance:0},s={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0
    -},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,
    -relevance:2},{begin:u(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),
    -relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{
    -begin:/\[.+?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{
    -className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,
    -returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",
    -excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",
    -end:"\\]",excludeBegin:!0,excludeEnd:!0}]},t={className:"strong",contains:[],
    -variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},a={
    -className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{
    -begin:/_(?!_)/,end:/_/,relevance:0}]};t.contains.push(a),a.contains.push(t)
    -;let i=[n,s]
    -;return t.contains=t.contains.concat(i),a.contains=a.contains.concat(i),
    -i=i.concat(t,a),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{
    -className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:i},{
    -begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",
    -contains:i}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",
    -end:"\\s+",excludeEnd:!0},t,a,{className:"quote",begin:"^>\\s+",contains:i,
    -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:"$"},s,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{
    -className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{
    -className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}},grmr_objectivec:e=>{
    -const n=/[a-zA-Z@][a-zA-Z0-9_]*/,s={$pattern:n,
    -keyword:["@interface","@class","@protocol","@implementation"]};return{
    -name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-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:"("+s.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:s,
    -contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,
    -relevance:0}]}},grmr_perl:e=>{const n=/[dualxmsipngr]{0,12}/,s={
    -$pattern:/[\w.]+/,
    -keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"
    -},t={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:s},a={begin:/->\{/,
    -end:/\}/},i={variants:[{begin:/\$\d/},{
    -begin:u(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")
    -},{begin:/[$%@][^\s\w{]/,relevance:0}]
    -},r=[e.BACKSLASH_ESCAPE,t,i],o=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],c=(e,s,t="\\1")=>{
    -const a="\\1"===t?t:u(t,s)
    -;return u(u("(?:",e,")"),s,/(?:\\.|[^\\\/])*?/,a,/(?:\\.|[^\\\/])*?/,t,n)
    -},l=(e,s,t)=>u(u("(?:",e,")"),s,/(?:\\.|[^\\\/])*?/,t,n),d=[i,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{
    -endsWithParent:!0}),a,{className:"string",contains:r,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+\}/,relevance:0},{
    -begin:"-?\\w+\\s*=>",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",variants:[{
    -begin:c("s|tr|y",b(...o,{capture:!0}))},{begin:c("s|tr|y","\\(","\\)")},{
    -begin:c("s|tr|y","\\[","\\]")},{begin:c("s|tr|y","\\{","\\}")}],relevance:2},{
    -className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{
    -begin:l("(?:m|qr)?",/\//,/\//)},{begin:l("m|qr",b(...o,{capture:!0}),/\1/)},{
    -begin:l("m|qr",/\(/,/\)/)},{begin:l("m|qr",/\[/,/\]/)},{
    -begin:l("m|qr",/\{/,/\}/)}]}]},{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=d,a.contains=d,{name:"Perl",aliases:["pl","pm"],keywords:s,
    -contains:d}},grmr_php:e=>{const n={className:"variable",
    -begin:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])"},s={
    -className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{
    -begin:/\?>/}]},t={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,
    -end:/\}/}]},a=e.inherit(e.APOS_STRING_MODE,{illegal:null
    -}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,
    -contains:e.QUOTE_STRING_MODE.contains.concat(t)}),r=e.END_SAME_AS_BEGIN({
    -begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,
    -contains:e.QUOTE_STRING_MODE.contains.concat(t)}),o={className:"string",
    -contains:[e.BACKSLASH_ESCAPE,s],variants:[e.inherit(a,{begin:"b'",end:"'"
    -}),e.inherit(i,{begin:'b"',end:'"'}),i,a,r]},c={className:"number",variants:[{
    -begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{
    -begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{
    -begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"
    -}],relevance:0},l={
    -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 enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed 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 UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"
    -};return{case_insensitive:!0,keywords:l,
    -contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[s]
    -}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]
    -}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,
    -keywords:"__halt_compiler"}),s,{className:"keyword",begin:/\$this\b/},n,{
    -begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",
    -relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,
    -illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{
    -begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",
    -excludeBegin:!0,excludeEnd:!0,keywords:l,
    -contains:["self",n,e.C_BLOCK_COMMENT_MODE,o,c]}]},{className:"class",variants:[{
    -beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",
    -illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{
    -beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
    -beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,
    -contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",
    -contains:[e.UNDERSCORE_TITLE_MODE]},o,c]}},grmr_php_template:e=>({
    -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},e.inherit(e.APOS_STRING_MODE,{
    -illegal:null,className:null,contains:null,skip:!0
    -}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,
    -skip:!0})]}]}),grmr_plaintext:e=>({name:"Plain text",aliases:["text","txt"],
    -disableAutodetect:!0}),grmr_python:e=>{const n={$pattern:/[A-Za-z]\w+|__\w+__/,
    -keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],
    -built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],
    -literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
    -type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
    -},s={className:"meta",begin:/^(>>>|\.\.\.) /},t={className:"subst",begin:/\{/,
    -end:/\}/,keywords:n,illegal:/#/},a={begin:/\{\{/,relevance:0},i={
    -className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
    -begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
    -contains:[e.BACKSLASH_ESCAPE,s],relevance:10},{
    -begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
    -contains:[e.BACKSLASH_ESCAPE,s],relevance:10},{
    -begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
    -contains:[e.BACKSLASH_ESCAPE,s,a,t]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
    -end:/"""/,contains:[e.BACKSLASH_ESCAPE,s,a,t]},{begin:/([uU]|[rR])'/,end:/'/,
    -relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
    -begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
    -end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
    -contains:[e.BACKSLASH_ESCAPE,a,t]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
    -contains:[e.BACKSLASH_ESCAPE,a,t]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
    -},r="[0-9](_?[0-9])*",o=`(\\b(${r}))?\\.(${r})|\\b(${r})\\.`,c={
    -className:"number",relevance:0,variants:[{
    -begin:`(\\b(${r})|(${o}))[eE][+-]?(${r})[jJ]?\\b`},{begin:`(${o})[jJ]?`},{
    -begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{
    -begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{
    -begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${r})[jJ]\\b`}]},l={
    -className:"comment",begin:p(/# type:/),end:/$/,keywords:n,contains:[{
    -begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},d={
    -className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,
    -end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,
    -contains:["self",s,c,i,e.HASH_COMMENT_MODE]}]};return t.contains=[i,c,s],{
    -name:"Python",aliases:["py","gyp","ipython"],keywords:n,
    -illegal:/(<\/|->|\?)|=>/,contains:[s,c,{begin:/\bself\b/},{beginKeywords:"if",
    -relevance:0},i,l,e.HASH_COMMENT_MODE,{match:[/def/,/\s+/,f],scope:{1:"keyword",
    -3:"title.function"},contains:[d]},{variants:[{
    -match:[/class/,/\s+/,f,/\s*/,/\(\s*/,f,/\s*\)/]},{match:[/class/,/\s+/,f]}],
    -scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{
    -className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[c,d,i]}]}},
    -grmr_python_repl:e=>({aliases:["pycon"],contains:[{className:"meta",starts:{
    -end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{
    -begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}),grmr_r:e=>{
    -const n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,s=b(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),t=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,a=b(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/)
    -;return{name:"R",keywords:{$pattern:n,
    -keyword:"function if in break next repeat else for while",
    -literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",
    -built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"
    -},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",begin:"@examples",
    -starts:{contains:[{begin:/\n/},{begin:/#'\s*(?=@[a-zA-Z]+)/,endsParent:!0},{
    -begin:/#'/,end:/$/,excludeBegin:!0}]}},{scope:"doctag",begin:"@param",end:/$/,
    -contains:[{scope:"variable",variants:[{begin:n},{begin:/`(?:\\.|[^`\\])+`/}],
    -endsParent:!0}]},{scope:"doctag",begin:/@[a-zA-Z]+/},{scope:"keyword",
    -begin:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",
    -contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({
    -begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,
    -end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/
    -}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/
    -}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/
    -}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',
    -relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{
    -1:"operator",2:"number"},match:[t,s]},{scope:{1:"operator",2:"number"},
    -match:[/%[^%]*%/,s]},{scope:{1:"punctuation",2:"number"},match:[a,s]},{scope:{
    -2:"number"},match:[/[^a-zA-Z0-9._]|^/,s]}]},{scope:{3:"operator"},
    -match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:t},{
    -match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:a},{begin:"`",end:"`",
    -contains:[{begin:/\\./}]}]}},grmr_ruby:e=>{
    -const n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",s={
    -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 __FILE__",
    -built_in:"proc lambda",literal:"true false nil"},t={className:"doctag",
    -begin:"@[A-Za-z]+"},a={begin:"#<",end:">"},i=[e.COMMENT("#","$",{contains:[t]
    -}),e.COMMENT("^=begin","^=end",{contains:[t],relevance:10
    -}),e.COMMENT("^__END__","\\n$")],r={className:"subst",begin:/#\{/,end:/\}/,
    -keywords:s},o={className:"string",contains:[e.BACKSLASH_ESCAPE,r],variants:[{
    -begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,
    -end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{
    -begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,
    -end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{
    -begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{
    -begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{
    -begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{
    -begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{
    -begin:u(/<<[-~]?'?/,p(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),
    -contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,
    -contains:[e.BACKSLASH_ESCAPE,r]})]}]},c="[0-9](_?[0-9])*",l={className:"number",
    -relevance:0,variants:[{
    -begin:`\\b([1-9](_?[0-9])*|0)(\\.(${c}))?([eE][+-]?(${c})|r)?i?\\b`},{
    -begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"
    -},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{
    -begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{
    -begin:"\\b0(_?[0-7])+r?i?\\b"}]},d={className:"params",begin:"\\(",end:"\\)",
    -endsParent:!0,keywords:s},m=[o,{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,relevance:0}]}].concat(i)},{
    -className:"function",begin:u(/def\s+/,p(n+"\\s*(\\(|;|$)")),relevance:0,
    -keywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:n
    -}),d].concat(i)},{begin:e.IDENT_RE+"::"},{className:"symbol",
    -begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",
    -begin:":(?!\\s)",contains:[o,{begin:n}],relevance:0},l,{className:"variable",
    -begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{
    -className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:s},{
    -begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{
    -className:"regexp",contains:[e.BACKSLASH_ESCAPE,r],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(a,i),relevance:0}].concat(a,i);r.contains=m,d.contains=m;const b=[{
    -begin:/^\s*=>/,starts:{end:"$",contains:m}},{className:"meta",
    -begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",
    -starts:{end:"$",contains:m}}];return i.unshift(a),{name:"Ruby",
    -aliases:["rb","gemspec","podspec","thor","irb"],keywords:s,illegal:/\/\*/,
    -contains:[e.SHEBANG({binary:"ruby"})].concat(b).concat(i).concat(m)}},
    -grmr_rust:e=>{const n={className:"title.function.invoke",relevance:0,
    -begin:u(/\b/,/(?!let\b)/,e.IDENT_RE,p(/\s*\(/))
    -},s="([ui](8|16|32|64|128|size)|f(32|64))?",t=["drop ","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+"!?",
    -type:["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"],
    -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:""},n]}},
    -grmr_scss:e=>{const n=ee(e),s=ae,t=te,a="@[a-z-]+",i={className:"variable",
    -begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{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
    -},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",
    -begin:"\\b("+ne.join("|")+")\\b",relevance:0},{className:"selector-pseudo",
    -begin:":("+t.join("|")+")"},{className:"selector-pseudo",
    -begin:"::("+s.join("|")+")"},i,{begin:/\(/,end:/\)/,contains:[n.CSS_NUMBER_MODE]
    -},{className:"attribute",begin:"\\b("+ie.join("|")+")\\b"},{
    -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:[i,n.HEXCOLOR,n.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.IMPORTANT]
    -},{begin:"@(page|font-face)",keywords:{$pattern:a,keyword:"@page @font-face"}},{
    -begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,
    -keyword:"and or not only",attribute:se.join(" ")},contains:[{begin:a,
    -className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"
    -},i,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.HEXCOLOR,n.CSS_NUMBER_MODE]}]}},
    -grmr_shell:e=>({name:"Shell Session",aliases:["console","shellsession"],
    -contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{
    -end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}),grmr_sql:e=>{
    -const n=e.COMMENT("--","$"),s=["true","false","unknown"],t=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],a=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],i=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],r=a,o=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!a.includes(e))),c={
    -begin:u(/\b/,b(...r),/\s*\(/),relevance:0,keywords:{built_in:r}};return{
    -name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{
    -$pattern:/\b[\w\.]+/,keyword:((e,{exceptions:n,when:s}={})=>{const t=s
    -;return n=n||[],e.map((e=>e.match(/\|\d+$/)||n.includes(e)?e:t(e)?e+"|0":e))
    -})(o,{when:e=>e.length<3}),literal:s,type:t,
    -built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]
    -},contains:[{begin:b(...i),relevance:0,keywords:{$pattern:/[\w\.]+/,
    -keyword:o.concat(i),literal:s,type:t}},{className:"type",
    -begin:b("double precision","large object","with timezone","without timezone")
    -},c,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{
    -begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{
    -begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator",
    -begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}},
    -grmr_swift:e=>{const n={match:/\s+/,relevance:0},s=e.COMMENT("/\\*","\\*/",{
    -contains:["self"]}),t=[e.C_LINE_COMMENT_MODE,s],a={match:[/\./,b(...we,...Ne)],
    -className:{2:"keyword"}},i={match:u(/\./,b(...xe)),relevance:0
    -},r=xe.filter((e=>"string"==typeof e)).concat(["_|0"]),o={variants:[{
    -className:"keyword",
    -match:b(...xe.filter((e=>"string"!=typeof e)).concat(ye).map(Ee),...Ne)}]},c={
    -$pattern:b(/\b\w+/,/#\w+/),keyword:r.concat(Ae),literal:Oe},l=[a,i,o],d=[{
    -match:u(/\./,b(...ke)),relevance:0},{className:"built_in",
    -match:u(/\b/,b(...ke),/(?=\()/)}],m={match:/->/,relevance:0},g=[m,{
    -className:"operator",relevance:0,variants:[{match:qe},{match:`\\.(\\.|${Ce})+`}]
    -}],v="([0-9a-fA-F]_*)+",_={className:"number",relevance:0,variants:[{
    -match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{
    -match:`\\b0x(${v})(\\.(${v}))?([pP][+-]?(([0-9]_*)+))?\\b`},{
    -match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},f=(e="")=>({
    -className:"subst",variants:[{match:u(/\\/,e,/[0\\tnr"']/)},{
    -match:u(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),h=(e="")=>({className:"subst",
    -match:u(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),E=(e="")=>({className:"subst",
    -label:"interpol",begin:u(/\\/,e,/\(/),end:/\)/}),w=(e="")=>({begin:u(e,/"""/),
    -end:u(/"""/,e),contains:[f(e),h(e),E(e)]}),N=(e="")=>({begin:u(e,/"/),
    -end:u(/"/,e),contains:[f(e),E(e)]}),y={className:"string",
    -variants:[w(),w("#"),w("##"),w("###"),N(),N("#"),N("##"),N("###")]},x={
    -match:u(/`/,De,/`/)},O=[x,{className:"variable",match:/\$\d+/},{
    -className:"variable",match:`\\$${Re}+`}],M=[{match:/(@|#)available/,
    -className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:Be,
    -contains:[...g,_,y]}]}},{className:"keyword",match:u(/@/,b(...Le))},{
    -className:"meta",match:u(/@/,De)}],A={match:p(/\b[A-Z]/),relevance:0,contains:[{
    -className:"type",
    -match:u(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Re,"+")
    -},{className:"type",match:Ie,relevance:0},{match:/[?!]+/,relevance:0},{
    -match:/\.\.\./,relevance:0},{match:u(/\s+&\s+/,p(Ie)),relevance:0}]},k={
    -begin://,keywords:c,contains:[...t,...l,...M,m,A]};A.contains.push(k)
    -;const S={begin:/\(/,end:/\)/,relevance:0,keywords:c,contains:["self",{
    -match:u(De,/\s*:/),keywords:"_|0",relevance:0
    -},...t,...l,...d,...g,_,y,...O,...M,A]},C={begin://,contains:[...t,A]
    -},q={begin:/\(/,end:/\)/,keywords:c,contains:[{
    -begin:b(p(u(De,/\s*:/)),p(u(De,/\s+/,De,/\s*:/))),end:/:/,relevance:0,
    -contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:De}]
    -},...t,...l,...g,_,y,...M,A,S],endsParent:!0,illegal:/["']/},T={
    -match:[/func/,/\s+/,b(x.match,De,qe)],className:{1:"keyword",3:"title.function"
    -},contains:[C,q,n],illegal:[/\[/,/%/]},R={
    -match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},
    -contains:[C,q,n],illegal:/\[|%/},D={match:[/operator/,/\s+/,qe],className:{
    -1:"keyword",3:"title"}},I={begin:[/precedencegroup/,/\s+/,Ie],className:{
    -1:"keyword",3:"title"},contains:[A],keywords:[...Me,...Oe],end:/}/}
    -;for(const e of y.variants){const n=e.contains.find((e=>"interpol"===e.label))
    -;n.keywords=c;const s=[...l,...d,...g,_,y,...O];n.contains=[...s,{begin:/\(/,
    -end:/\)/,contains:["self",...s]}]}return{name:"Swift",keywords:c,
    -contains:[...t,T,R,{beginKeywords:"struct protocol class extension enum actor",
    -end:"\\{",excludeEnd:!0,keywords:c,contains:[e.inherit(e.TITLE_MODE,{
    -className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...l]
    -},D,I,{beginKeywords:"import",end:/$/,contains:[...t],relevance:0
    -},...l,...d,...g,_,y,...O,...M,A,S]}},grmr_typescript:e=>{const n={$pattern:pe,
    -keyword:me.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]),
    -literal:ue,
    -built_in:fe.concat(["any","void","number","boolean","string","object","never","enum"]),
    -"variable.language":_e},s={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"
    -},t=(e,n,s)=>{const t=e.contains.findIndex((e=>e.label===n))
    -;if(-1===t)throw Error("can not find mode to replace");e.contains.splice(t,1,s)
    -},a=he(e)
    -;return Object.assign(a.keywords,n),a.exports.PARAMS_CONTAINS.push(s),a.contains=a.contains.concat([s,{
    -beginKeywords:"namespace",end:/\{/,excludeEnd:!0},{beginKeywords:"interface",
    -end:/\{/,excludeEnd:!0,keywords:"interface extends"
    -}]),t(a,"shebang",e.SHEBANG()),t(a,"use_strict",{className:"meta",relevance:10,
    -begin:/^\s*['"]use strict['"]/
    -}),a.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(a,{
    -name:"TypeScript",aliases:["ts","tsx"]}),a},grmr_vbnet:e=>{
    -const n=/\d{1,2}\/\d{1,2}\/\d{4}/,s=/\d{4}-\d{1,2}-\d{1,2}/,t=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,a=/\d{1,2}(:\d{1,2}){1,2}/,i={
    -className:"literal",variants:[{begin:u(/# */,b(s,n),/ *#/)},{
    -begin:u(/# */,a,/ *#/)},{begin:u(/# */,t,/ *#/)},{
    -begin:u(/# */,b(s,n),/ +/,b(t,a),/ *#/)}]},r=e.COMMENT(/'''/,/$/,{contains:[{
    -className:"doctag",begin:/<\/?/,end:/>/}]}),o=e.COMMENT(null,/$/,{variants:[{
    -begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",
    -aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{
    -keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",
    -built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",
    -type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",
    -literal:"true false nothing"},
    -illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{
    -className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,
    -end:/"/,illegal:/\n/,contains:[{begin:/""/}]},i,{className:"number",relevance:0,
    -variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
    -},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{
    -begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{
    -className:"label",begin:/^\w+:/},r,o,{className:"meta",
    -begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,
    -end:/$/,keywords:{
    -keyword:"const disable else elseif enable end externalsource if region then"},
    -contains:[o]}]}},grmr_yaml:e=>{
    -const n="true false yes no null",s="[\\w#;/?:@&=+$,.~*'()[\\]]+",t={
    -className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/
    -},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",
    -variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},a=e.inherit(t,{
    -variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),i={
    -end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},r={begin:/\{/,
    -end:/\}/,contains:[i],illegal:"\\n",relevance:0},o={begin:"\\[",end:"\\]",
    -contains:[i],illegal:"\\n",relevance:0},c=[{className:"attr",variants:[{
    -begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{
    -begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",
    -relevance:10},{className:"string",
    -begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{
    -begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,
    -relevance:0},{className:"type",begin:"!\\w+!"+s},{className:"type",
    -begin:"!<"+s+">"},{className:"type",begin:"!"+s},{className:"type",begin:"!!"+s
    -},{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",relevance:0},r,o,t],l=[...c]
    -;return l.pop(),l.push(a),i.contains=l,{name:"YAML",case_insensitive:!0,
    -aliases:["yml"],contains:c}},grmr_apache:e=>{const 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:/<\/?/,end:/>/,
    -contains:[n,{className:"number",begin:/:\d{1,5}/
    -},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",
    -begin:/\w+/,relevance:0,keywords:{
    -_:["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:/\b\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}},
    -grmr_armasm:e=>{const n={variants:[e.COMMENT("^[ \\t]*(?=#)","$",{relevance:0,
    -excludeBegin:!0}),e.COMMENT("[;@]","$",{relevance:0
    -}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]};return{name:"ARM Assembly",
    -case_insensitive:!0,aliases:["arm"],keywords:{$pattern:"\\.?"+e.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)"
    -},n,e.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}]}},
    -grmr_coffeescript:e=>{const n={
    -keyword:me.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((s=["var","const","let","function","static"],
    -e=>!s.includes(e))),literal:ue.concat(["yes","no","on","off"]),
    -built_in:fe.concat(["npm","print"])};var s
    -;const t="[A-Za-z$_][0-9A-Za-z$_]*",a={className:"subst",begin:/#\{/,end:/\}/,
    -keywords:n},i=[e.BINARY_NUMBER_MODE,e.inherit(e.C_NUMBER_MODE,{starts:{
    -end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'''/,
    -end:/'''/,contains:[e.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,
    -contains:[e.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,
    -contains:[e.BACKSLASH_ESCAPE,a]},{begin:/"/,end:/"/,
    -contains:[e.BACKSLASH_ESCAPE,a]}]},{className:"regexp",variants:[{begin:"///",
    -end:"///",contains:[a,e.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",
    -relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+t
    -},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{
    -begin:"```",end:"```"},{begin:"`",end:"`"}]}];a.contains=i
    -;const r=e.inherit(e.TITLE_MODE,{begin:t}),o="(\\(.*\\)\\s*)?\\B[-=]>",c={
    -className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,
    -end:/\)/,keywords:n,contains:["self"].concat(i)}]};return{name:"CoffeeScript",
    -aliases:["coffee","cson","iced"],keywords:n,illegal:/\/\*/,
    -contains:[...i,e.COMMENT("###","###"),e.HASH_COMMENT_MODE,{className:"function",
    -begin:"^\\s*"+t+"\\s*=\\s*"+o,end:"[-=]>",returnBegin:!0,contains:[r,c]},{
    -begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",begin:o,
    -end:"[-=]>",returnBegin:!0,contains:[c]}]},{className:"class",
    -beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{
    -beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[r]},r]
    -},{begin:t+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}]}},grmr_d:e=>{
    -const n={$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"
    -},s="((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))",t="\\\\(['\"\\?\\\\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,};",a={
    -className:"number",begin:"\\b"+s+"(L|u|U|Lu|LU|uL|UL)?",relevance:0},i={
    -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_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|"+s+"(i|[fF]i|Li))",
    -relevance:0},r={className:"string",begin:"'("+t+"|.)",end:"'",illegal:"."},o={
    -className:"string",begin:'"',contains:[{begin:t,relevance:0}],end:'"[cwd]?'
    -},c=e.COMMENT("\\/\\+","\\+\\/",{contains:["self"],relevance:10});return{
    -name:"D",keywords:n,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,c,{
    -className:"string",begin:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',relevance:10},o,{
    -className:"string",begin:'[rq]"',end:'"[cwd]?',relevance:5},{className:"string",
    -begin:"`",end:"`[cwd]?"},{className:"string",begin:'q"\\{',end:'\\}"'},i,a,r,{
    -className:"meta",begin:"^#!",end:"$",relevance:5},{className:"meta",
    -begin:"#(line)",end:"$",relevance:5},{className:"keyword",
    -begin:"@[a-zA-Z_][a-zA-Z_\\d]*"}]}},grmr_handlebars:e=>{const n={
    -$pattern:/[\w.\/]+/,
    -built_in:["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"]
    -},s=/\[\]|\[[^\]]+\]/,t=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,a=b(/""|"[^"]+"/,/''|'[^']+'/,s,t),i=u(m(/\.|\.\/|\//),a,(r=u(/(\.|\/)/,a),
    -u("(?:",r,")*")));var r;const o=u("(",s,"|",t,")(?==)"),c={begin:i
    -},l=e.inherit(c,{keywords:{$pattern:/[\w.\/]+/,
    -literal:["true","false","undefined","null"]}}),d={begin:/\(/,end:/\)/},p={
    -className:"attr",begin:o,relevance:0,starts:{begin:/=/,end:/=/,starts:{
    -contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,l,d]}}},g={
    -contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:/as\s+\|/,
    -keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},p,l,d],returnEnd:!0
    -},v=e.inherit(c,{className:"name",keywords:n,starts:e.inherit(g,{end:/\)/})})
    -;d.contains=[v];const _=e.inherit(c,{keywords:n,className:"name",
    -starts:e.inherit(g,{end:/\}\}/})}),f=e.inherit(c,{keywords:n,className:"name"
    -}),h=e.inherit(c,{className:"name",keywords:n,starts:e.inherit(g,{end:/\}\}/})})
    -;return{name:"Handlebars",
    -aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,
    -subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,
    -skip:!0},e.COMMENT(/\{\{!--/,/--\}\}/),e.COMMENT(/\{\{!/,/\}\}/),{
    -className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[_],
    -starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{
    -className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[f]},{
    -className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[_]},{
    -className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{
    -className:"template-tag",begin:/\{\{(?=else if)/,end:/\}\}/,keywords:"else if"
    -},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[f]},{
    -className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{
    -className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[h]}]}},
    -grmr_haskell:e=>{const n={variants:[e.COMMENT("--","$"),e.COMMENT(/\{-/,/-\}/,{
    -contains:["self"]})]},s={className:"meta",begin:/\{-#/,end:/#-\}/},t={
    -className:"meta",begin:"^#",end:"$"},a={className:"type",
    -begin:"\\b[A-Z][\\w']*",relevance:0},i={begin:"\\(",end:"\\)",illegal:'"',
    -contains:[s,t,{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"
    -},e.inherit(e.TITLE_MODE,{begin:"[_a-z][\\w']*"}),n]},r="([0-9a-fA-F]_*)+",o={
    -className:"number",relevance:0,variants:[{
    -match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{
    -match:`\\b0[xX]_*(${r})(\\.(${r}))?([pP][+-]?(([0-9]_*)+))?\\b`},{
    -match:"\\b0[oO](([0-7]_*)+)\\b"},{match:"\\b0[bB](([01]_*)+)\\b"}]};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:[i,n],illegal:"\\W\\.|;"},{begin:"\\bimport\\b",end:"$",
    -keywords:"import qualified as hiding",contains:[i,n],illegal:"\\W\\.|;"},{
    -className:"class",begin:"^(\\s*)?(class|instance)\\b",end:"where",
    -keywords:"class family instance where",contains:[a,i,n]},{className:"class",
    -begin:"\\b(data|(new)?type)\\b",end:"$",
    -keywords:"data family type newtype deriving",contains:[s,a,i,{begin:/\{/,
    -end:/\}/,contains:i.contains},n]},{beginKeywords:"default",end:"$",
    -contains:[a,i,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:[a,e.QUOTE_STRING_MODE,n]},{className:"meta",
    -begin:"#!\\/usr\\/bin\\/env runhaskell",end:"$"
    -},s,t,e.QUOTE_STRING_MODE,o,a,e.inherit(e.TITLE_MODE,{begin:"^[_a-z][\\w']*"
    -}),n,{begin:"->|<-"}]}},grmr_http:e=>{const n="HTTP/(2|1\\.[01])",s={
    -className:"attribute",begin:u("^",/[A-Za-z][A-Za-z0-9-]*/,"(?=\\:\\s)"),starts:{
    -contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",
    -relevance:0}}]}},t=[s,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}
    -}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{
    -begin:"^(?="+n+" \\d{3})",end:/$/,contains:[{className:"meta",begin:n},{
    -className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,
    -contains:t}},{begin:"(?=^[A-Z]+ (.*?) "+n+"$)",end:/$/,contains:[{
    -className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{
    -className:"meta",begin:n},{className:"keyword",begin:"[A-Z]+"}],starts:{
    -end:/\b\B/,illegal:/\S/,contains:t}},e.inherit(s,{relevance:0})]}},
    -grmr_julia:e=>{var n="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",s={
    -$pattern:n,
    -keyword:["baremodule","begin","break","catch","ccall","const","continue","do","else","elseif","end","export","false","finally","for","function","global","if","import","in","isa","let","local","macro","module","quote","return","true","try","using","where","while"],
    -literal:["ARGS","C_NULL","DEPOT_PATH","ENDIAN_BOM","ENV","Inf","Inf16","Inf32","Inf64","InsertionSort","LOAD_PATH","MergeSort","NaN","NaN16","NaN32","NaN64","PROGRAM_FILE","QuickSort","RoundDown","RoundFromZero","RoundNearest","RoundNearestTiesAway","RoundNearestTiesUp","RoundToZero","RoundUp","VERSION|0","devnull","false","im","missing","nothing","pi","stderr","stdin","stdout","true","undef","\u03c0","\u212f"],
    -built_in:["AbstractArray","AbstractChannel","AbstractChar","AbstractDict","AbstractDisplay","AbstractFloat","AbstractIrrational","AbstractMatrix","AbstractRange","AbstractSet","AbstractString","AbstractUnitRange","AbstractVecOrMat","AbstractVector","Any","ArgumentError","Array","AssertionError","BigFloat","BigInt","BitArray","BitMatrix","BitSet","BitVector","Bool","BoundsError","CapturedException","CartesianIndex","CartesianIndices","Cchar","Cdouble","Cfloat","Channel","Char","Cint","Cintmax_t","Clong","Clonglong","Cmd","Colon","Complex","ComplexF16","ComplexF32","ComplexF64","CompositeException","Condition","Cptrdiff_t","Cshort","Csize_t","Cssize_t","Cstring","Cuchar","Cuint","Cuintmax_t","Culong","Culonglong","Cushort","Cvoid","Cwchar_t","Cwstring","DataType","DenseArray","DenseMatrix","DenseVecOrMat","DenseVector","Dict","DimensionMismatch","Dims","DivideError","DomainError","EOFError","Enum","ErrorException","Exception","ExponentialBackOff","Expr","Float16","Float32","Float64","Function","GlobalRef","HTML","IO","IOBuffer","IOContext","IOStream","IdDict","IndexCartesian","IndexLinear","IndexStyle","InexactError","InitError","Int","Int128","Int16","Int32","Int64","Int8","Integer","InterruptException","InvalidStateException","Irrational","KeyError","LinRange","LineNumberNode","LinearIndices","LoadError","MIME","Matrix","Method","MethodError","Missing","MissingException","Module","NTuple","NamedTuple","Nothing","Number","OrdinalRange","OutOfMemoryError","OverflowError","Pair","PartialQuickSort","PermutedDimsArray","Pipe","ProcessFailedException","Ptr","QuoteNode","Rational","RawFD","ReadOnlyMemoryError","Real","ReentrantLock","Ref","Regex","RegexMatch","RoundingMode","SegmentationFault","Set","Signed","Some","StackOverflowError","StepRange","StepRangeLen","StridedArray","StridedMatrix","StridedVecOrMat","StridedVector","String","StringIndexError","SubArray","SubString","SubstitutionString","Symbol","SystemError","Task","TaskFailedException","Text","TextDisplay","Timer","Tuple","Type","TypeError","TypeVar","UInt","UInt128","UInt16","UInt32","UInt64","UInt8","UndefInitializer","UndefKeywordError","UndefRefError","UndefVarError","Union","UnionAll","UnitRange","Unsigned","Val","Vararg","VecElement","VecOrMat","Vector","VersionNumber","WeakKeyDict","WeakRef"]
    -},t={keywords:s,illegal:/<\//},a={className:"subst",begin:/\$\(/,end:/\)/,
    -keywords:s},i={className:"variable",begin:"\\$"+n},r={className:"string",
    -contains:[e.BACKSLASH_ESCAPE,a,i],variants:[{begin:/\w*"""/,end:/"""\w*/,
    -relevance:10},{begin:/\w*"/,end:/"\w*/}]},o={className:"string",
    -contains:[e.BACKSLASH_ESCAPE,a,i],begin:"`",end:"`"},c={className:"meta",
    -begin:"@"+n};return t.name="Julia",t.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]+)'/},r,o,c,{
    -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:/<:/
    -}],a.contains=t.contains,t},grmr_nginx:e=>{const n={className:"variable",
    -variants:[{begin:/\$\d+/},{begin:/\$\{\w+\}/},{
    -begin:u(/[$@]/,e.UNDERSCORE_IDENT_RE)}]},s={endsWithParent:!0,keywords:{
    -$pattern:/[a-z_]{2,}|\/dev\/poll/,
    -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,{
    -beginKeywords:"upstream location",end:/;|\{/,contains:s.contains,keywords:{
    -section:"upstream location"}},{className:"section",
    -begin:u(e.UNDERSCORE_IDENT_RE+p(/\s+\{/)),relevance:0},{
    -begin:p(e.UNDERSCORE_IDENT_RE+"\\s"),end:";|\\{",contains:[{
    -className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:s}],relevance:0}],
    -illegal:"[^\\s\\}\\{]"}},grmr_properties:e=>{
    -const n="[ \\t\\f]*",s="([^\\\\:= \\t\\f\\n]|\\\\.)+";return{name:".properties",
    -disableAutodetect:!0,case_insensitive:!0,illegal:/\S/,
    -contains:[e.COMMENT("^\\s*[!#]","$"),{returnBegin:!0,variants:[{
    -begin:s+"[ \\t\\f]*[:=][ \\t\\f]*"},{begin:s+"[ \\t\\f]+"}],contains:[{
    -className:"attr",begin:s,endsParent:!0}],starts:{
    -end:"([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)",relevance:0,starts:{
    -className:"string",end:/$/,relevance:0,contains:[{begin:"\\\\\\\\"},{
    -begin:"\\\\\\n"}]}}},{className:"attr",begin:s+n+"$"}]}},grmr_scala:e=>{
    -const n={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"},{begin:/\$\{/,
    -end:/\}/}]},s={className:"string",variants:[{begin:'"""',end:'"""'},{begin:'"',
    -end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:'[a-z]+"',end:'"',
    -illegal:"\\n",contains:[e.BACKSLASH_ESCAPE,n]},{className:"string",
    -begin:'[a-z]+"""',end:'"""',contains:[n],relevance:10}]},t={className:"type",
    -begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},a={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:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{
    -beginKeywords:"extends with",relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,
    -excludeEnd:!0,relevance:0,contains:[t]},{className:"params",begin:/\(/,end:/\)/,
    -excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[t]},a]},r={
    -className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,
    -contains:[a]};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,s,{className:"symbol",
    -begin:"'\\w[\\w\\d_]*(?!')"},t,r,i,e.C_NUMBER_MODE,{className:"meta",
    -begin:"@[A-Za-z]+"}]}},grmr_x86asm:e=>({name:"Intel x86 Assembly",
    -case_insensitive:!0,keywords:{$pattern:"[.%]?"+e.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:[e.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"
    -}]},e.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_-]+/}]})});const $e=J
    -;for(const e of Object.keys(ze)){const n=e.replace("grmr_","")
    -;$e.registerLanguage(n,ze[e])}return $e}()
    -;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);
    \ No newline at end of file
    +  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}])}}}()); diff --git a/en/message.html b/en/message.html index e1bfe30..9b2433c 100644 --- a/en/message.html +++ b/en/message.html @@ -685,7 +685,7 @@ it will be null.

    If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.

    -

    Example:

    +

    Example: Using Lua Function Calls

    -- Define the function
     xplr.fn.custom.ask_name_and_greet = function(app)
       print("What's your name?")
    @@ -776,7 +776,7 @@ handled by xplr after the command execution.

    XPLR_PIPE_DIRECTORY_NODES_OUT

    New-line delimited list of paths, filtered and sorted as displayed in the files table.

    -

    Example:

    +

    Example: Using Environment Variables and Pipes

    xplr.config.modes.builtin.default.key_bindings.on_key.space = {
       help = "ask name and greet",
       messages = {
    diff --git a/en/print.html b/en/print.html
    index 6e147e9..5c3e555 100644
    --- a/en/print.html
    +++ b/en/print.html
    @@ -1283,7 +1283,7 @@ it will be null.

    If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.

    -

    Example:

    +

    Example: Using Lua Function Calls

    -- Define the function
     xplr.fn.custom.ask_name_and_greet = function(app)
       print("What's your name?")
    @@ -1374,7 +1374,7 @@ handled by xplr after the command execution.

    XPLR_PIPE_DIRECTORY_NODES_OUT

    New-line delimited list of paths, filtered and sorted as displayed in the files table.

    -

    Example:

    +

    Example: Using Environment Variables and Pipes

    xplr.config.modes.builtin.default.key_bindings.on_key.space = {
       help = "ask name and greet",
       messages = {
    @@ -1523,7 +1523,7 @@ applied of the list of paths being displayed.

    splits

    Type: list of Layout

    The list of child layouts to fit into the parent layout.

    -

    Example

    +

    Example

    layout.png

    xplr.config.layouts.builtin.default = {
       Horizontal = {
    @@ -1693,7 +1693,7 @@ metadata is set for the directory, "Hidden"
     
  • "CrossedOut"
  • -

    Example

    +

    Example

    xplr.config.general.cursor.style.fg = "Red"
     xplr.config.general.cursor.style.bg = { Rgb = { 100, 150, 200 } }
     xplr.config.general.cursor.style.add_modifiers = { "Bold", "Italic" }
    @@ -1751,7 +1751,7 @@ the node is a symlink.

    reverse

    Type: boolean

    It defined the direction of the order.

    -

    Example

    +

    Example

    xplr.config.general.initial_sorting = {
         { sorter = "ByCanonicalIsDir", reverse = true },
         { sorter = "ByIRelativePath", reverse = false },
    @@ -1815,7 +1815,7 @@ condition: relative path does not contain xyz (case insens
     

    input

    Type: string

    The input for the condition.

    -

    Example:

    +

    Example:

    ToggleNodeFilter = {
       filter = "RelativePathDoesNotStartWith",
       input = "."
    @@ -1980,7 +1980,7 @@ node. It will instead be null.

  • size
  • human_size
  • -

    Example

    +

    Example: Customizing Table Renderer

    xplr.fn.custom.fmt_simple_column = function(m)
       return m.prefix .. m.relative_path .. m.suffix
     end
    @@ -2270,6 +2270,13 @@ to append .xplr to the name to make them distinguishable. Similar t
     let us know.

    Examples

    Visit Awesome Plugins for xplr plugin examples.

    +

    Also See

    +

    Awesome Plugins

    Here's a list of awesome xplr plugins that you might want to check out. If none of the following plugins work for you, it's very easy to diff --git a/en/searchindex.js b/en/searchindex.js index e472701..ab9afea 100644 --- a/en/searchindex.js +++ b/en/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["introduction.html#introduction","introduction.html#features","introduction.html#hackable","introduction.html#fast","introduction.html#minimalist","introduction.html#other-features","quickstart.html#quickstart","install.html#install","install.html#community-maintained-repositories","install.html#arch-linux","install.html#void-linux","install.html#nixos","install.html#macos","install.html#freebsd","install.html#netbsd","install.html#direct-download","install.html#from--cratesio","install.html#build-from-source","install.html#android","install.html#termux","post-install.html#post-install","post-install.html#create-the-customizable-config-file","post-install.html#run","configuration.html#configuration","configuration.html#how-config-is-loaded","configuration.html#config","general-config.html#general-config","general-config.html#enable_mouse","general-config.html#show_hidden","general-config.html#read_only","general-config.html#disable_recover_mode","general-config.html#cursorformat","general-config.html#cursorstyle","general-config.html#initial_layout","general-config.html#initial_mode","general-config.html#initial_sorting","general-config.html#tablestyle","general-config.html#tablecol_spacing","general-config.html#tablecol_widths","general-config.html#tableheaderheight","general-config.html#tableheaderstyle","general-config.html#tableheadercols","general-config.html#tablerowheight","general-config.html#tablerowstyle","general-config.html#tablerowcols","general-config.html#tabletree","modes.html#modes","modes.html#builtin","modes.html#custom","modes.html#mode","modes.html#name","modes.html#help","modes.html#extra_help","modes.html#key_bindings","modes.html#key-bindings","modes.html#on_key","modes.html#on_alphabet","modes.html#on_number","modes.html#on_special_character","modes.html#default","modes.html#key","modes.html#action","modes.html#help","modes.html#messages","modes.html#tutorial-adding-a-new-mode","message.html#message","message.html#format","message.html#full-list-of-messages","message.html#explorepwd","message.html#explorepwdasync","message.html#exploreparentsasync","message.html#refresh","message.html#clearscreen","message.html#focusnext","message.html#-focusnextbyrelativeindex--int-","message.html#focusnextbyrelativeindexfrominput","message.html#focusprevious","message.html#-focuspreviousbyrelativeindex--int-","message.html#focuspreviousbyrelativeindexfrominput","message.html#focusfirst","message.html#focuslast","message.html#-focuspath--string-","message.html#focuspathfrominput","message.html#-focusbyindex--int-","message.html#focusbyindexfrominput","message.html#-focusbyfilename--string-","message.html#-changedirectory--string-","message.html#enter","message.html#back","message.html#lastvisitedpath","message.html#nextvisitedpath","message.html#followsymlink","message.html#-bufferinput--string-","message.html#bufferinputfromkey","message.html#-setinputbuffer--string-","message.html#removeinputbufferlastcharacter","message.html#removeinputbufferlastword","message.html#resetinputbuffer","message.html#-switchmode--string-","message.html#-switchmodebuiltin--string-","message.html#-switchmodecustom--string-","message.html#popmode","message.html#-switchlayout--string-","message.html#-switchlayoutbuiltin--string-","message.html#-switchlayoutcustom--string-","message.html#-call--string-","message.html#-callsilently--string-","message.html#-calllua--string-","message.html#-callluasilently--string-","message.html#-bashexec--string-","message.html#-bashexecsilently--string-","message.html#select","message.html#selectall","message.html#-selectpath--string-","message.html#unselect","message.html#unselectall","message.html#-unselectpath--string-","message.html#toggleselection","message.html#toggleselectall","message.html#-toggleselectionbypath--string-","message.html#clearselection","message.html#-addnodefilter---filter---filter--input--string-","message.html#-removenodefilter---filter---filter--input--string-","message.html#-togglenodefilter---filter---filter--input--string-","message.html#-addnodefilterfrominput---filter--","message.html#-removenodefilterfrominput---filter--","message.html#removelastnodefilter","message.html#resetnodefilters","message.html#clearnodefilters","message.html#-addnodesorter---sorter---sorter--reverse--bool--","message.html#-removenodesorter---sorter--","message.html#-reversenodesorter---sorter--","message.html#-togglenodesorter---sorter---sorter--reverse--bool--","message.html#reversenodesorters","message.html#removelastnodesorter","message.html#resetnodesorters","message.html#clearnodesorters","message.html#enablemouse","message.html#disablemouse","message.html#togglemouse","message.html#-startfifo--string-","message.html#stopfifo","message.html#-togglefifo--string-","message.html#-loginfo--string-","message.html#-logsuccess--string-","message.html#-logwarning--string-","message.html#-logerror--string-","message.html#quit","message.html#printpwdandquit","message.html#printfocuspathandquit","message.html#printselectionandquit","message.html#printresultandquit","message.html#printappstateandquit","message.html#-debug--string-","message.html#terminate","message.html#lua-function-calls","message.html#calllua-argument","message.html#version","message.html#config","message.html#pwd","message.html#focused_node","message.html#directory_buffer","message.html#selection","message.html#mode","message.html#layout","message.html#input_buffer","message.html#pid","message.html#session_path","message.html#explorer_config","message.html#history","message.html#last_modes","message.html#node","message.html#parent","message.html#relative_path","message.html#absolute_path","message.html#extension","message.html#is_symlink","message.html#is_broken","message.html#is_dir","message.html#is_file","message.html#is_readonly","message.html#mime_essence","message.html#size","message.html#human_size","message.html#permissions","message.html#canonical","message.html#symlink","message.html#example","message.html#environment-variables-and-pipes","message.html#environment-variables","message.html#example","layouts.html#layouts","layouts.html#builtin","layouts.html#default","layouts.html#no_help","layouts.html#no_selection","layouts.html#no_help_no_selection","layouts.html#custom","layouts.html#layout","layouts.html#nothing","layouts.html#table","layouts.html#inputandlogs","layouts.html#selection","layouts.html#helpmenu","layouts.html#sortandfilter","layouts.html#horizontal","layouts.html#vertical","layouts.html#layout-config","layouts.html#margin","layouts.html#horizontal_margin","layouts.html#vertical_margin","layouts.html#constraints","layouts.html#constraint","layouts.html#splits","layouts.html#example","node_types.html#node-types","node_types.html#directory","node_types.html#file","node_types.html#symlink","node_types.html#mime_essence","node_types.html#extension","node_types.html#special","node_types.html#nodetype-config","node_types.html#meta","style.html#style","style.html#fg","style.html#bg","style.html#add_modifiers","style.html#sub_modifiers","style.html#color","style.html#modifier","style.html#example","sorting.html#sorting","sorting.html#node-sorter-applicable","sorting.html#sorter","sorting.html#reverse","sorting.html#example","filtering.html#filtering","filtering.html#node-filter-applicable","filtering.html#filter","filtering.html#input","filtering.html#example","column-renderer.html#column-renderer","column-renderer.html#table-renderer-argument","column-renderer.html#parent","column-renderer.html#relative_path","column-renderer.html#absolute_path","column-renderer.html#extension","column-renderer.html#is_symlink","column-renderer.html#is_broken","column-renderer.html#is_dir","column-renderer.html#is_file","column-renderer.html#is_readonly","column-renderer.html#mime_essence","column-renderer.html#size","column-renderer.html#human_size","column-renderer.html#permissions","column-renderer.html#canonical","column-renderer.html#symlink","column-renderer.html#index","column-renderer.html#relative_index","column-renderer.html#is_before_focus","column-renderer.html#is_after_focus","column-renderer.html#tree","column-renderer.html#prefix","column-renderer.html#suffix","column-renderer.html#is_selected","column-renderer.html#is_focused","column-renderer.html#total","column-renderer.html#meta","column-renderer.html#permission","column-renderer.html#resolved-node-metadata","column-renderer.html#example","default-key-bindings.html#default-key-bindings","default-key-bindings.html#default","default-key-bindings.html#recover","default-key-bindings.html#filter","default-key-bindings.html#number","default-key-bindings.html#go-to","default-key-bindings.html#search","default-key-bindings.html#selection-ops","default-key-bindings.html#action-to","default-key-bindings.html#create","default-key-bindings.html#create-file","default-key-bindings.html#create-directory","default-key-bindings.html#rename","default-key-bindings.html#delete","default-key-bindings.html#sort","default-key-bindings.html#filter","default-key-bindings.html#relative-path-does-contain","default-key-bindings.html#relative-path-does-not-contain","default-key-bindings.html#switch-layout","plugin.html#plugin","installing-plugins.html#installing-plugins","writing-plugins.html#writing-plugins","writing-plugins.html#naming","writing-plugins.html#structure","writing-plugins.html#readmemd","writing-plugins.html#srcinitlua","writing-plugins.html#publishing","writing-plugins.html#examples","awesome-plugins.html#awesome-plugins","awesome-plugins.html#categories","awesome-plugins.html#extension","awesome-plugins.html#integration","awesome-plugins.html#theme","integration.html#integration","awesome-integrations.html#awesome-integrations","awesome-integrations.html#categories","awesome-integrations.html#editor","awesome-integrations.html#shell","awesome-integrations.html#security-tools","todo.html#todo","alternatives.html#alternatives","upgrade-guide.html#upgrade-guide","upgrade-guide.html#instructions","community.html#community","contribute.html#backers"],"index":{"documentStore":{"docInfo":{"0":{"body":64,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":3,"breadcrumbs":4,"title":2},"100":{"body":14,"breadcrumbs":4,"title":2},"101":{"body":7,"breadcrumbs":3,"title":1},"102":{"body":21,"breadcrumbs":4,"title":2},"103":{"body":14,"breadcrumbs":4,"title":2},"104":{"body":14,"breadcrumbs":4,"title":2},"105":{"body":43,"breadcrumbs":4,"title":2},"106":{"body":28,"breadcrumbs":4,"title":2},"107":{"body":28,"breadcrumbs":4,"title":2},"108":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":27,"breadcrumbs":4,"title":2},"11":{"body":7,"breadcrumbs":3,"title":1},"110":{"body":23,"breadcrumbs":4,"title":2},"111":{"body":5,"breadcrumbs":3,"title":1},"112":{"body":5,"breadcrumbs":3,"title":1},"113":{"body":14,"breadcrumbs":4,"title":2},"114":{"body":5,"breadcrumbs":3,"title":1},"115":{"body":5,"breadcrumbs":3,"title":1},"116":{"body":14,"breadcrumbs":4,"title":2},"117":{"body":6,"breadcrumbs":3,"title":1},"118":{"body":6,"breadcrumbs":3,"title":1},"119":{"body":15,"breadcrumbs":4,"title":2},"12":{"body":20,"breadcrumbs":3,"title":1},"120":{"body":4,"breadcrumbs":3,"title":1},"121":{"body":26,"breadcrumbs":7,"title":5},"122":{"body":23,"breadcrumbs":7,"title":5},"123":{"body":24,"breadcrumbs":7,"title":5},"124":{"body":17,"breadcrumbs":4,"title":2},"125":{"body":17,"breadcrumbs":4,"title":2},"126":{"body":6,"breadcrumbs":3,"title":1},"127":{"body":8,"breadcrumbs":3,"title":1},"128":{"body":5,"breadcrumbs":3,"title":1},"129":{"body":26,"breadcrumbs":7,"title":5},"13":{"body":9,"breadcrumbs":3,"title":1},"130":{"body":14,"breadcrumbs":4,"title":2},"131":{"body":14,"breadcrumbs":4,"title":2},"132":{"body":24,"breadcrumbs":7,"title":5},"133":{"body":5,"breadcrumbs":3,"title":1},"134":{"body":6,"breadcrumbs":3,"title":1},"135":{"body":8,"breadcrumbs":3,"title":1},"136":{"body":5,"breadcrumbs":3,"title":1},"137":{"body":4,"breadcrumbs":3,"title":1},"138":{"body":4,"breadcrumbs":3,"title":1},"139":{"body":4,"breadcrumbs":3,"title":1},"14":{"body":8,"breadcrumbs":3,"title":1},"140":{"body":18,"breadcrumbs":4,"title":2},"141":{"body":7,"breadcrumbs":3,"title":1},"142":{"body":14,"breadcrumbs":4,"title":2},"143":{"body":16,"breadcrumbs":4,"title":2},"144":{"body":18,"breadcrumbs":4,"title":2},"145":{"body":16,"breadcrumbs":4,"title":2},"146":{"body":16,"breadcrumbs":4,"title":2},"147":{"body":6,"breadcrumbs":3,"title":1},"148":{"body":5,"breadcrumbs":3,"title":1},"149":{"body":12,"breadcrumbs":3,"title":1},"15":{"body":34,"breadcrumbs":4,"title":2},"150":{"body":9,"breadcrumbs":3,"title":1},"151":{"body":11,"breadcrumbs":3,"title":1},"152":{"body":13,"breadcrumbs":3,"title":1},"153":{"body":19,"breadcrumbs":4,"title":2},"154":{"body":8,"breadcrumbs":3,"title":1},"155":{"body":31,"breadcrumbs":5,"title":3},"156":{"body":27,"breadcrumbs":4,"title":2},"157":{"body":7,"breadcrumbs":3,"title":1},"158":{"body":2,"breadcrumbs":3,"title":1},"159":{"body":5,"breadcrumbs":3,"title":1},"16":{"body":12,"breadcrumbs":3,"title":1},"160":{"body":6,"breadcrumbs":3,"title":1},"161":{"body":1,"breadcrumbs":3,"title":1},"162":{"body":7,"breadcrumbs":3,"title":1},"163":{"body":4,"breadcrumbs":3,"title":1},"164":{"body":4,"breadcrumbs":3,"title":1},"165":{"body":5,"breadcrumbs":3,"title":1},"166":{"body":5,"breadcrumbs":3,"title":1},"167":{"body":4,"breadcrumbs":3,"title":1},"168":{"body":1,"breadcrumbs":3,"title":1},"169":{"body":1,"breadcrumbs":3,"title":1},"17":{"body":28,"breadcrumbs":4,"title":2},"170":{"body":6,"breadcrumbs":3,"title":1},"171":{"body":19,"breadcrumbs":3,"title":1},"172":{"body":5,"breadcrumbs":3,"title":1},"173":{"body":9,"breadcrumbs":3,"title":1},"174":{"body":8,"breadcrumbs":3,"title":1},"175":{"body":4,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":6,"breadcrumbs":3,"title":1},"178":{"body":5,"breadcrumbs":3,"title":1},"179":{"body":5,"breadcrumbs":3,"title":1},"18":{"body":0,"breadcrumbs":3,"title":1},"180":{"body":5,"breadcrumbs":3,"title":1},"181":{"body":9,"breadcrumbs":3,"title":1},"182":{"body":10,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":5,"breadcrumbs":3,"title":1},"185":{"body":19,"breadcrumbs":3,"title":1},"186":{"body":20,"breadcrumbs":3,"title":1},"187":{"body":48,"breadcrumbs":3,"title":1},"188":{"body":44,"breadcrumbs":5,"title":3},"189":{"body":131,"breadcrumbs":4,"title":2},"19":{"body":51,"breadcrumbs":3,"title":1},"190":{"body":35,"breadcrumbs":3,"title":1},"191":{"body":30,"breadcrumbs":3,"title":1},"192":{"body":17,"breadcrumbs":3,"title":1},"193":{"body":7,"breadcrumbs":3,"title":1},"194":{"body":6,"breadcrumbs":3,"title":1},"195":{"body":6,"breadcrumbs":3,"title":1},"196":{"body":9,"breadcrumbs":3,"title":1},"197":{"body":22,"breadcrumbs":3,"title":1},"198":{"body":21,"breadcrumbs":3,"title":1},"199":{"body":4,"breadcrumbs":3,"title":1},"2":{"body":24,"breadcrumbs":2,"title":1},"20":{"body":8,"breadcrumbs":5,"title":2},"200":{"body":8,"breadcrumbs":3,"title":1},"201":{"body":7,"breadcrumbs":3,"title":1},"202":{"body":6,"breadcrumbs":3,"title":1},"203":{"body":10,"breadcrumbs":3,"title":1},"204":{"body":12,"breadcrumbs":3,"title":1},"205":{"body":12,"breadcrumbs":3,"title":1},"206":{"body":12,"breadcrumbs":3,"title":1},"207":{"body":9,"breadcrumbs":4,"title":2},"208":{"body":6,"breadcrumbs":3,"title":1},"209":{"body":9,"breadcrumbs":3,"title":1},"21":{"body":59,"breadcrumbs":7,"title":4},"210":{"body":9,"breadcrumbs":3,"title":1},"211":{"body":7,"breadcrumbs":3,"title":1},"212":{"body":42,"breadcrumbs":3,"title":1},"213":{"body":9,"breadcrumbs":3,"title":1},"214":{"body":18,"breadcrumbs":3,"title":1},"215":{"body":50,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":4,"title":1},"217":{"body":16,"breadcrumbs":4,"title":1},"218":{"body":12,"breadcrumbs":4,"title":1},"219":{"body":43,"breadcrumbs":4,"title":1},"22":{"body":1,"breadcrumbs":4,"title":1},"220":{"body":19,"breadcrumbs":4,"title":1},"221":{"body":20,"breadcrumbs":4,"title":1},"222":{"body":8,"breadcrumbs":5,"title":2},"223":{"body":25,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":3,"title":1},"225":{"body":5,"breadcrumbs":3,"title":1},"226":{"body":5,"breadcrumbs":3,"title":1},"227":{"body":6,"breadcrumbs":3,"title":1},"228":{"body":6,"breadcrumbs":3,"title":1},"229":{"body":26,"breadcrumbs":3,"title":1},"23":{"body":47,"breadcrumbs":2,"title":1},"230":{"body":12,"breadcrumbs":3,"title":1},"231":{"body":12,"breadcrumbs":3,"title":1},"232":{"body":52,"breadcrumbs":3,"title":1},"233":{"body":5,"breadcrumbs":5,"title":3},"234":{"body":32,"breadcrumbs":3,"title":1},"235":{"body":5,"breadcrumbs":3,"title":1},"236":{"body":17,"breadcrumbs":3,"title":1},"237":{"body":51,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":5,"title":3},"239":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":22,"breadcrumbs":3,"title":2},"240":{"body":4,"breadcrumbs":3,"title":1},"241":{"body":12,"breadcrumbs":3,"title":1},"242":{"body":36,"breadcrumbs":5,"title":2},"243":{"body":31,"breadcrumbs":6,"title":3},"244":{"body":5,"breadcrumbs":4,"title":1},"245":{"body":9,"breadcrumbs":4,"title":1},"246":{"body":8,"breadcrumbs":4,"title":1},"247":{"body":4,"breadcrumbs":4,"title":1},"248":{"body":5,"breadcrumbs":4,"title":1},"249":{"body":6,"breadcrumbs":4,"title":1},"25":{"body":13,"breadcrumbs":2,"title":1},"250":{"body":5,"breadcrumbs":4,"title":1},"251":{"body":5,"breadcrumbs":4,"title":1},"252":{"body":5,"breadcrumbs":4,"title":1},"253":{"body":9,"breadcrumbs":4,"title":1},"254":{"body":10,"breadcrumbs":4,"title":1},"255":{"body":6,"breadcrumbs":4,"title":1},"256":{"body":5,"breadcrumbs":4,"title":1},"257":{"body":19,"breadcrumbs":4,"title":1},"258":{"body":20,"breadcrumbs":4,"title":1},"259":{"body":6,"breadcrumbs":4,"title":1},"26":{"body":8,"breadcrumbs":5,"title":2},"260":{"body":9,"breadcrumbs":4,"title":1},"261":{"body":7,"breadcrumbs":4,"title":1},"262":{"body":6,"breadcrumbs":4,"title":1},"263":{"body":7,"breadcrumbs":4,"title":1},"264":{"body":5,"breadcrumbs":4,"title":1},"265":{"body":5,"breadcrumbs":4,"title":1},"266":{"body":5,"breadcrumbs":4,"title":1},"267":{"body":6,"breadcrumbs":4,"title":1},"268":{"body":5,"breadcrumbs":4,"title":1},"269":{"body":8,"breadcrumbs":4,"title":1},"27":{"body":8,"breadcrumbs":4,"title":1},"270":{"body":21,"breadcrumbs":4,"title":1},"271":{"body":11,"breadcrumbs":6,"title":3},"272":{"body":23,"breadcrumbs":4,"title":1},"273":{"body":25,"breadcrumbs":6,"title":3},"274":{"body":79,"breadcrumbs":4,"title":1},"275":{"body":8,"breadcrumbs":4,"title":1},"276":{"body":27,"breadcrumbs":4,"title":1},"277":{"body":32,"breadcrumbs":4,"title":1},"278":{"body":16,"breadcrumbs":4,"title":1},"279":{"body":37,"breadcrumbs":4,"title":1},"28":{"body":7,"breadcrumbs":4,"title":1},"280":{"body":17,"breadcrumbs":5,"title":2},"281":{"body":29,"breadcrumbs":4,"title":1},"282":{"body":14,"breadcrumbs":4,"title":1},"283":{"body":24,"breadcrumbs":5,"title":2},"284":{"body":24,"breadcrumbs":5,"title":2},"285":{"body":23,"breadcrumbs":4,"title":1},"286":{"body":13,"breadcrumbs":4,"title":1},"287":{"body":58,"breadcrumbs":4,"title":1},"288":{"body":27,"breadcrumbs":4,"title":1},"289":{"body":24,"breadcrumbs":6,"title":3},"29":{"body":16,"breadcrumbs":4,"title":1},"290":{"body":24,"breadcrumbs":6,"title":3},"291":{"body":19,"breadcrumbs":5,"title":2},"292":{"body":18,"breadcrumbs":2,"title":1},"293":{"body":44,"breadcrumbs":5,"title":2},"294":{"body":11,"breadcrumbs":5,"title":2},"295":{"body":14,"breadcrumbs":4,"title":1},"296":{"body":12,"breadcrumbs":4,"title":1},"297":{"body":4,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":4,"title":1},"299":{"body":23,"breadcrumbs":4,"title":1},"3":{"body":59,"breadcrumbs":2,"title":1},"30":{"body":19,"breadcrumbs":4,"title":1},"300":{"body":6,"breadcrumbs":4,"title":1},"301":{"body":16,"breadcrumbs":5,"title":2},"302":{"body":3,"breadcrumbs":4,"title":1},"303":{"body":22,"breadcrumbs":4,"title":1},"304":{"body":84,"breadcrumbs":4,"title":1},"305":{"body":20,"breadcrumbs":4,"title":1},"306":{"body":14,"breadcrumbs":2,"title":1},"307":{"body":14,"breadcrumbs":5,"title":2},"308":{"body":4,"breadcrumbs":4,"title":1},"309":{"body":3,"breadcrumbs":4,"title":1},"31":{"body":10,"breadcrumbs":4,"title":1},"310":{"body":1,"breadcrumbs":4,"title":1},"311":{"body":2,"breadcrumbs":5,"title":2},"312":{"body":81,"breadcrumbs":2,"title":1},"313":{"body":25,"breadcrumbs":2,"title":1},"314":{"body":142,"breadcrumbs":4,"title":2},"315":{"body":817,"breadcrumbs":3,"title":1},"316":{"body":40,"breadcrumbs":2,"title":1},"317":{"body":69,"breadcrumbs":2,"title":1},"32":{"body":4,"breadcrumbs":4,"title":1},"33":{"body":8,"breadcrumbs":4,"title":1},"34":{"body":8,"breadcrumbs":4,"title":1},"35":{"body":12,"breadcrumbs":4,"title":1},"36":{"body":5,"breadcrumbs":4,"title":1},"37":{"body":7,"breadcrumbs":4,"title":1},"38":{"body":8,"breadcrumbs":4,"title":1},"39":{"body":6,"breadcrumbs":4,"title":1},"4":{"body":42,"breadcrumbs":2,"title":1},"40":{"body":5,"breadcrumbs":4,"title":1},"41":{"body":18,"breadcrumbs":4,"title":1},"42":{"body":7,"breadcrumbs":4,"title":1},"43":{"body":5,"breadcrumbs":4,"title":1},"44":{"body":23,"breadcrumbs":4,"title":1},"45":{"body":62,"breadcrumbs":4,"title":1},"46":{"body":35,"breadcrumbs":3,"title":1},"47":{"body":38,"breadcrumbs":3,"title":1},"48":{"body":37,"breadcrumbs":3,"title":1},"49":{"body":8,"breadcrumbs":3,"title":1},"5":{"body":256,"breadcrumbs":2,"title":1},"50":{"body":7,"breadcrumbs":3,"title":1},"51":{"body":11,"breadcrumbs":3,"title":1},"52":{"body":13,"breadcrumbs":3,"title":1},"53":{"body":7,"breadcrumbs":3,"title":1},"54":{"body":24,"breadcrumbs":4,"title":2},"55":{"body":9,"breadcrumbs":3,"title":1},"56":{"body":12,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":13,"breadcrumbs":3,"title":1},"59":{"body":16,"breadcrumbs":3,"title":1},"6":{"body":12,"breadcrumbs":2,"title":1},"60":{"body":46,"breadcrumbs":3,"title":1},"61":{"body":6,"breadcrumbs":3,"title":1},"62":{"body":8,"breadcrumbs":3,"title":1},"63":{"body":9,"breadcrumbs":3,"title":1},"64":{"body":134,"breadcrumbs":6,"title":4},"65":{"body":30,"breadcrumbs":3,"title":1},"66":{"body":47,"breadcrumbs":3,"title":1},"67":{"body":0,"breadcrumbs":5,"title":3},"68":{"body":14,"breadcrumbs":3,"title":1},"69":{"body":34,"breadcrumbs":3,"title":1},"7":{"body":44,"breadcrumbs":3,"title":1},"70":{"body":35,"breadcrumbs":3,"title":1},"71":{"body":24,"breadcrumbs":3,"title":1},"72":{"body":4,"breadcrumbs":3,"title":1},"73":{"body":5,"breadcrumbs":3,"title":1},"74":{"body":20,"breadcrumbs":4,"title":2},"75":{"body":12,"breadcrumbs":3,"title":1},"76":{"body":5,"breadcrumbs":3,"title":1},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":12,"breadcrumbs":3,"title":1},"79":{"body":5,"breadcrumbs":3,"title":1},"8":{"body":9,"breadcrumbs":5,"title":3},"80":{"body":5,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":4,"title":2},"82":{"body":7,"breadcrumbs":3,"title":1},"83":{"body":18,"breadcrumbs":4,"title":2},"84":{"body":10,"breadcrumbs":3,"title":1},"85":{"body":17,"breadcrumbs":4,"title":2},"86":{"body":16,"breadcrumbs":4,"title":2},"87":{"body":8,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":3,"title":1},"89":{"body":6,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":6,"breadcrumbs":3,"title":1},"91":{"body":8,"breadcrumbs":3,"title":1},"92":{"body":15,"breadcrumbs":4,"title":2},"93":{"body":9,"breadcrumbs":3,"title":1},"94":{"body":24,"breadcrumbs":4,"title":2},"95":{"body":7,"breadcrumbs":3,"title":1},"96":{"body":7,"breadcrumbs":3,"title":1},"97":{"body":9,"breadcrumbs":3,"title":1},"98":{"body":22,"breadcrumbs":4,"title":2},"99":{"body":14,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"xplr is a terminal UI based file explorer that aims to increase our terminal productivity by being a flexible, interactive orchestrator for the ever growing awesome command-line utilities that work with the file-system. To achieve its goal, xplr strives to be a fast, minimal and more importantly, hackable file explorer. xplr is not meant to be a replacement for the standard shell commands or the GUI file managers. Rather, it aims to integrate them all and expose an intuitive, scriptable, keyboard controlled, real-time visual interface, also being an ideal candidate for further integration, enabling the users to achieve insane terminal productivity.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Introduction » Features","id":"1","title":"Features"},"10":{"body":"void-templates by shubham","breadcrumbs":"Quickstart » Install » Void Linux","id":"10","title":"Void Linux"},"100":{"body":"YAML: SwitchModeCustom: string Switch to a custom mode . YAML Example: SwitchModeCustom: my_custom_mode Lua Example: { SwitchModeCustom = \"my_custom_mode\" }","breadcrumbs":"Configuration » Message » { SwitchModeCustom = \"string\" }","id":"100","title":"{ SwitchModeCustom = \"string\" }"},"101":{"body":"YAML: PopMode Pop the last mode from the history and switch to it.","breadcrumbs":"Configuration » Message » \"PopMode\"","id":"101","title":"\"PopMode\""},"102":{"body":"YAML: SwitchLayout: string Switch layout . NOTE: To be specific about which layout to switch to, use SwitchLayoutBuiltin or SwitchLayoutCustom instead. YAML Example: SwitchLayout: default Lua Example: { SwitchLayout = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayout = \"string\" }","id":"102","title":"{ SwitchLayout = \"string\" }"},"103":{"body":"YAML: SwitchLayoutBuiltin: string Switch to a builtin layout . YAML Example: SwitchLayoutBuiltin: default Lua Example: { SwitchLayoutBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutBuiltin = \"string\" }","id":"103","title":"{ SwitchLayoutBuiltin = \"string\" }"},"104":{"body":"YAML: SwitchLayoutCustom: string Switch to a custom layout . YAML Example: SwitchLayoutCustom: my_custom_layout Lua Example: { SwitchLayoutCustom = \"my_custom_layout\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutCustom = \"string\" }","id":"104","title":"{ SwitchLayoutCustom = \"string\" }"},"105":{"body":"YAML: Call: string Call a shell command with the given arguments. Note that the arguments will be shell-escaped. So to read the variables, the -c option of the shell can be used. You may need to pass ExplorePwd depening on the expectation. YAML Example: Call: { command: bash, args: [\"-c\", \"read -p test\"] } Lua Example: { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } }","breadcrumbs":"Configuration » Message » { Call = \"string\" }","id":"105","title":"{ Call = \"string\" }"},"106":{"body":"YAML: CallSilently: string Like Call but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallSilently: { command: tput, args: [\"bell\"] } Lua Example: { CallSilently = { command = \"tput\", args = { \"bell\" } } }","breadcrumbs":"Configuration » Message » { CallSilently = \"string\" }","id":"106","title":"{ CallSilently = \"string\" }"},"107":{"body":"YAML: CallLua: string Call a Lua function. A CallLuaArg object will be passed to the function as argument. The function can optionally return a list of messages for xplr to handle after the executing the function. YAML Example: CallLua: custom.some_custom_funtion Lua Example: { CallLua = \"custom.some_custom_funtion\" }","breadcrumbs":"Configuration » Message » { CallLua = \"string\" }","id":"107","title":"{ CallLua = \"string\" }"},"108":{"body":"YAML: CallLuaSilently: string Like CallLua but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallLuaSilently: custom.some_custom_function Lua Example: { CallLuaSilently = \"custom.some_custom_function\" }","breadcrumbs":"Configuration » Message » { CallLuaSilently = \"string\" }","id":"108","title":"{ CallLuaSilently = \"string\" }"},"109":{"body":"YAML: BashExec: string An alias to Call: {command: bash, args: [\"-c\", \"{string}\"], silent: false} where {string} is the given value. YAML Example: BashExec: \"read -p test\" Lua Example: { BashExec = \"read -p test\" }","breadcrumbs":"Configuration » Message » { BashExec = \"string\" }","id":"109","title":"{ BashExec = \"string\" }"},"11":{"body":"Nixpkgs nix-env -f https://github.com/NixOS/nixpkgs/tarball/master -iA xplr","breadcrumbs":"Quickstart » Install » Nix(OS)","id":"11","title":"Nix(OS)"},"110":{"body":"YAML: BashExecSilently(String) Like BashExec but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: BashExecSilently: \"tput bell\" Lua Example: { BashExecSilently = \"tput bell\" }","breadcrumbs":"Configuration » Message » { BashExecSilently = \"string\" }","id":"110","title":"{ BashExecSilently = \"string\" }"},"111":{"body":"YAML: Select Select the focused node.","breadcrumbs":"Configuration » Message » \"Select\"","id":"111","title":"\"Select\""},"112":{"body":"YAML: SelectAll Select all the visible nodes.","breadcrumbs":"Configuration » Message » \"SelectAll\"","id":"112","title":"\"SelectAll\""},"113":{"body":"YAML: SelectPath: string Select the given path. YAML Example: SelectPath: /path/to/file Lua Example: { SelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { SelectPath = \"string\" }","id":"113","title":"{ SelectPath = \"string\" }"},"114":{"body":"YAML: UnSelect Unselect the focused node.","breadcrumbs":"Configuration » Message » \"UnSelect\"","id":"114","title":"\"UnSelect\""},"115":{"body":"YAML: UnSelectAll Unselect all the visible nodes.","breadcrumbs":"Configuration » Message » \"UnSelectAll\"","id":"115","title":"\"UnSelectAll\""},"116":{"body":"YAML: UnSelectPath: string UnSelect the given path. YAML Example: UnSelectPath: /path/to/file Lua Example: { UnSelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { UnSelectPath = \"string)\" }","id":"116","title":"{ UnSelectPath = \"string)\" }"},"117":{"body":"YAML: ToggleSelection Toggle selection on the focused node.","breadcrumbs":"Configuration » Message » \"ToggleSelection\"","id":"117","title":"\"ToggleSelection\""},"118":{"body":"YAML: ToggleSelectAll Toggle between select all and unselect all.","breadcrumbs":"Configuration » Message » \"ToggleSelectAll\"","id":"118","title":"\"ToggleSelectAll\""},"119":{"body":"YAML: ToggleSelectionByPath: string Toggle selection by file path. YAML Example: ToggleSelectionByPath: /path/to/file Lua Example: { ToggleSelectionByPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { ToggleSelectionByPath = \"string\" }","id":"119","title":"{ ToggleSelectionByPath = \"string\" }"},"12":{"body":"MacPorts sudo port selfupdate\nsudo port install xplr Homebrew Stable branch: brew install xplr HEAD branch: brew install --head xplr","breadcrumbs":"Quickstart » Install » macOS","id":"12","title":"macOS"},"120":{"body":"YAML: ClearSelection Clear the selection.","breadcrumbs":"Configuration » Message » \"ClearSelection\"","id":"120","title":"\"ClearSelection\""},"121":{"body":"YAML: AddNodeFilter: { filter = Filter, input = string } Add a filter to exclude nodes while exploring directories. YAML Example: AddNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { AddNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { AddNodeFilter = { filter = Filter , input = \"string\" }","id":"121","title":"{ AddNodeFilter = { filter = Filter , input = \"string\" }"},"122":{"body":"YAML: RemoveNodeFilter: { filter = Filter, input = string Remove an existing filter . YAML Example: RemoveNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { RemoveNodeFilter: { filter: \"RelativePathDoesStartWith\", input: \"foo\" } }","breadcrumbs":"Configuration » Message » { RemoveNodeFilter = { filter = Filter , input = \"string\" }","id":"122","title":"{ RemoveNodeFilter = { filter = Filter , input = \"string\" }"},"123":{"body":"YAML: ToggleNodeFilter: { filter = Filter, input = string } Remove a filter if it exists, else, add a it. YAML Example: ToggleNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { ToggleNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { ToggleNodeFilter = { filter = Filter , input = \"string\" }","id":"123","title":"{ ToggleNodeFilter = { filter = Filter , input = \"string\" }"},"124":{"body":"YAML: AddNodeFilterFromInput: Filter Add a node filter reading the input from the buffer. YAML Example: AddNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { AddNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { AddNodeFilterFromInput = Filter }","id":"124","title":"{ AddNodeFilterFromInput = Filter }"},"125":{"body":"YAML: RemoveNodeFilterFromInput: Filter Remove a node filter reading the input from the buffer. YAML Example: RemoveNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { RemoveNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { RemoveNodeFilterFromInput = Filter }","id":"125","title":"{ RemoveNodeFilterFromInput = Filter }"},"126":{"body":"YAML: RemoveLastNodeFilter Remove the last node filter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeFilter\"","id":"126","title":"\"RemoveLastNodeFilter\""},"127":{"body":"YAML: ResetNodeFilters Reset the node filters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeFilters\"","id":"127","title":"\"ResetNodeFilters\""},"128":{"body":"YAML: ClearNodeFilters Clear all the node filters .","breadcrumbs":"Configuration » Message » \"ClearNodeFilters\"","id":"128","title":"\"ClearNodeFilters\""},"129":{"body":"YAML: AddNodeSorter: { sorter: Sorter, reverse = bool } Add a sorter to sort nodes while exploring directories. YAML Example: AddNodeSorter: { sorter: ByRelativePath, reverse: false } YAML Example: { AddNodeSorter = { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { AddNodeSorter = { sorter = Sorter , reverse = bool } }","id":"129","title":"{ AddNodeSorter = { sorter = Sorter , reverse = bool } }"},"13":{"body":"ports pkg install xplr Or cd /usr/ports/misc/xplr\nmake install clean","breadcrumbs":"Quickstart » Install » FreeBSD","id":"13","title":"FreeBSD"},"130":{"body":"YAML: RemoveNodeSorter: Sorter Remove an existing sorter . YAML Example: RemoveNodeSorter: ByRelativePath Lua Example: { RemoveNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { RemoveNodeSorter = Sorter }","id":"130","title":"{ RemoveNodeSorter = Sorter }"},"131":{"body":"YAML: ReverseNodeSorter: Sorter Reverse a node sorter . YAML Example: ReverseNodeSorter: ByRelativePath Lua Example: { ReverseNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { ReverseNodeSorter = Sorter }","id":"131","title":"{ ReverseNodeSorter = Sorter }"},"132":{"body":"YAML: ToggleNodeSorter: { sorter: Sorter, reverse = bool } Remove a sorter if it exists, else, add a it. YAML Example: ToggleSorterSorter: {sorter: ByRelativePath, reverse: false } Lua Example: { ToggleSorterSorter: { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { ToggleNodeSorter = { sorter = Sorter , reverse = bool } }","id":"132","title":"{ ToggleNodeSorter = { sorter = Sorter , reverse = bool } }"},"133":{"body":"YAML: ReverseNodeSorters Reverse the node sorters .","breadcrumbs":"Configuration » Message » \"ReverseNodeSorters\"","id":"133","title":"\"ReverseNodeSorters\""},"134":{"body":"YAML: RemoveLastNodeSorter Remove the last node sorter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeSorter\"","id":"134","title":"\"RemoveLastNodeSorter\""},"135":{"body":"YAML: ResetNodeSorters Reset the node sorters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeSorters\"","id":"135","title":"\"ResetNodeSorters\""},"136":{"body":"YAML: ClearNodeSorters Clear all the node sorters .","breadcrumbs":"Configuration » Message » \"ClearNodeSorters\"","id":"136","title":"\"ClearNodeSorters\""},"137":{"body":"YAML: EnableMouse Enable mouse","breadcrumbs":"Configuration » Message » \"EnableMouse\"","id":"137","title":"\"EnableMouse\""},"138":{"body":"YAML: DisableMouse Disable mouse","breadcrumbs":"Configuration » Message » \"DisableMouse\"","id":"138","title":"\"DisableMouse\""},"139":{"body":"YAML: ToggleMouse Toggle mouse","breadcrumbs":"Configuration » Message » \"ToggleMouse\"","id":"139","title":"\"ToggleMouse\""},"14":{"body":"pkgsrc pkgin install xplr Or cd /usr/pkgsrc/sysutils/xplr\nmake install","breadcrumbs":"Quickstart » Install » NetBSD","id":"14","title":"NetBSD"},"140":{"body":"YAML: StartFifo: string Start piping the focused path to the given fifo path YAML Example: StartFifo: /tmp/xplr.fifo Lua Example: { StartFifo = \"/tmp/xplr.fifo }","breadcrumbs":"Configuration » Message » { StartFifo = \"string\" }","id":"140","title":"{ StartFifo = \"string\" }"},"141":{"body":"YAML: StopFifo Close the active fifo and stop piping.","breadcrumbs":"Configuration » Message » \"StopFifo\"","id":"141","title":"\"StopFifo\""},"142":{"body":"YAML: ToggleFifo: string Toggle betwen {Start|Stop}Fifo YAML Example: ToggleFifo: /path/to/fifo Lua Example: { ToggleFifo = \"/path/to/fifo\" }","breadcrumbs":"Configuration » Message » { ToggleFifo = \"string\" }","id":"142","title":"{ ToggleFifo = \"string\" }"},"143":{"body":"YAML: LogInfo: string Log information message. YAML Example: LogInfo: launching satellite Lua Example: { LogInfo = \"launching satellite\" }","breadcrumbs":"Configuration » Message » { LogInfo = \"string\" }","id":"143","title":"{ LogInfo = \"string\" }"},"144":{"body":"YAML: LogSuccess: string Log a success message. YAML Example: LogSuccess: satellite reached destination. Lua Example: { LogSuccess = \"satellite reached destination\" }.","breadcrumbs":"Configuration » Message » { LogSuccess = \"String\" }","id":"144","title":"{ LogSuccess = \"String\" }"},"145":{"body":"YAML: LogWarning: string Log an warning message. YAML Example: LogWarning: satellite is heating Lua Example: { LogWarning = \"satellite is heating\" }","breadcrumbs":"Configuration » Message » { LogWarning = \"string\" }","id":"145","title":"{ LogWarning = \"string\" }"},"146":{"body":"YAML: LogError: string Log an error message. YAML Example: LogError: satellite crashed Lua Example: { LogError = \"satellite crashed\" }","breadcrumbs":"Configuration » Message » { LogError = \"string\" }","id":"146","title":"{ LogError = \"string\" }"},"147":{"body":"YAML: Quit Quit with returncode zero (success).","breadcrumbs":"Configuration » Message » \"Quit\"","id":"147","title":"\"Quit\""},"148":{"body":"YAML: PrintPwdAndQuit Print $PWD and quit.","breadcrumbs":"Configuration » Message » \"PrintPwdAndQuit\"","id":"148","title":"\"PrintPwdAndQuit\""},"149":{"body":"YAML: PrintFocusPathAndQuit Print the path under focus and quit. It can be empty string if there's nothing to focus.","breadcrumbs":"Configuration » Message » \"PrintFocusPathAndQuit\"","id":"149","title":"\"PrintFocusPathAndQuit\""},"15":{"body":"One can directly download the standalone binary from the releases . Currently, the following options are available for direct download: Linux macOS Command-line instructions: platform=\"linux\" # or \"macos\" # Download\nwget https://github.com/sayanarijit/xplr/releases/latest/download/xplr-$platform.tar.gz # Extract\ntar xzvf xplr-$platform.tar.gz # Place in $PATH\nsudo mv xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Direct Download","id":"15","title":"Direct Download"},"150":{"body":"YAML: PrintSelectionAndQuit Print the selected paths and quit. It can be empty is no path is selected.","breadcrumbs":"Configuration » Message » \"PrintSelectionAndQuit\"","id":"150","title":"\"PrintSelectionAndQuit\""},"151":{"body":"YAML: PrintResultAndQuit Print the selected paths if it's not empty, else, print the focused node's path.","breadcrumbs":"Configuration » Message » \"PrintResultAndQuit\"","id":"151","title":"\"PrintResultAndQuit\""},"152":{"body":"YAML: PrintAppStateAndQuit Print the state of application in YAML format. Helpful for debugging or generating the default configuration file.","breadcrumbs":"Configuration » Message » \"PrintAppStateAndQuit\"","id":"152","title":"\"PrintAppStateAndQuit\""},"153":{"body":"YAML: Debug: string Write the application state to a file, without quitting. Also helpful for debugging. YAML Example: Debug: /path/to/file Lua Example: { Debug = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { Debug = \"string\" }","id":"153","title":"{ Debug = \"string\" }"},"154":{"body":"YAML: Terminate Terminate the application with a non-zero return code.","breadcrumbs":"Configuration » Message » \"Terminate\"","id":"154","title":"\"Terminate\""},"155":{"body":"xplr allows users to define lua functions using the xplr.fn.custom Lua API. These functions can be called using messages like CallLua, CallLuaSilently. When called the function receives a special argument that contains some useful information. The function can optionally return a list of messages which will be handled by xplr.","breadcrumbs":"Configuration » Message » Lua Function Calls","id":"155","title":"Lua Function Calls"},"156":{"body":"This is a special argument passed to the lua functions when called using the CallLua, CallLuaSilently messages. It contains the following information: version config pwd focused_node directory_buffer selection mode layout input_buffer pid session_path explorer_config history last_modes","breadcrumbs":"Configuration » Message » CallLua Argument","id":"156","title":"CallLua Argument"},"157":{"body":"Type: string xplr version. Can be used to test compatibility.","breadcrumbs":"Configuration » Message » version","id":"157","title":"version"},"158":{"body":"Type: Config","breadcrumbs":"Configuration » Message » config","id":"158","title":"config"},"159":{"body":"Type: string The present working directory/","breadcrumbs":"Configuration » Message » pwd","id":"159","title":"pwd"},"16":{"body":"Prerequisites: Rust toolchain , gcc make Command-line instructions: cargo install --force xplr","breadcrumbs":"Quickstart » Install » From crates.io","id":"16","title":"From crates.io"},"160":{"body":"Type: nullable Node The node under focus.","breadcrumbs":"Configuration » Message » focused_node","id":"160","title":"focused_node"},"161":{"body":"TODO","breadcrumbs":"Configuration » Message » directory_buffer","id":"161","title":"directory_buffer"},"162":{"body":"Type: list of selected Node s The selected nodes.","breadcrumbs":"Configuration » Message » selection","id":"162","title":"selection"},"163":{"body":"Type: Mode Current mode.","breadcrumbs":"Configuration » Message » mode","id":"163","title":"mode"},"164":{"body":"Type: Layout Current layout.","breadcrumbs":"Configuration » Message » layout","id":"164","title":"layout"},"165":{"body":"Type: nullable string The input buffer.","breadcrumbs":"Configuration » Message » input_buffer","id":"165","title":"input_buffer"},"166":{"body":"Type: integer The xplr session PID.","breadcrumbs":"Configuration » Message » pid","id":"166","title":"pid"},"167":{"body":"Type: string The session path.","breadcrumbs":"Configuration » Message » session_path","id":"167","title":"session_path"},"168":{"body":"TODO","breadcrumbs":"Configuration » Message » explorer_config","id":"168","title":"explorer_config"},"169":{"body":"TODO","breadcrumbs":"Configuration » Message » history","id":"169","title":"history"},"17":{"body":"Prerequisites: git Rust toolchain gcc make Command-line instructions: # Clone the repository\ngit clone https://github.com/sayanarijit/xplr.git\ncd xplr # Build\ncargo build --release --bin xplr # Place in $PATH\nsudo cp target/release/xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Build From Source","id":"17","title":"Build From Source"},"170":{"body":"Type: list of Mode Last modes, not popped yet.","breadcrumbs":"Configuration » Message » last_modes","id":"170","title":"last_modes"},"171":{"body":"A node contains the following fields: parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink","breadcrumbs":"Configuration » Message » Node","id":"171","title":"Node"},"172":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Message » parent","id":"172","title":"parent"},"173":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Message » relative_path","id":"173","title":"relative_path"},"174":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Message » absolute_path","id":"174","title":"absolute_path"},"175":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Message » extension","id":"175","title":"extension"},"176":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Message » is_symlink","id":"176","title":"is_symlink"},"177":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Message » is_broken","id":"177","title":"is_broken"},"178":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Message » is_dir","id":"178","title":"is_dir"},"179":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Message » is_file","id":"179","title":"is_file"},"18":{"body":"","breadcrumbs":"Quickstart » Install » Android","id":"18","title":"Android"},"180":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Message » is_readonly","id":"180","title":"is_readonly"},"181":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Message » mime_essence","id":"181","title":"mime_essence"},"182":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Message » size","id":"182","title":"size"},"183":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Message » human_size","id":"183","title":"human_size"},"184":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Message » permissions","id":"184","title":"permissions"},"185":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Message » canonical","id":"185","title":"canonical"},"186":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Message » symlink","id":"186","title":"symlink"},"187":{"body":"-- Define the function\nxplr.fn.custom.ask_name_and_greet = function(app) print(\"What's your name?\") local name = io.read() local greeting = \"Hello \" .. name .. \"!\" local message = greeting .. \" You are inside \" .. app.pwd return { { LogSuccess = message }, }\nend -- Map the function to a key (space)\nxplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { CallLua = \"custom.ask_name_and_greet\" } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example:","id":"187","title":"Example:"},"188":{"body":"Alternative to CallLua, CallLuaSilently messages that call Lua functions, there are Call, CallSilently, BashExec, BashExecSilently messages that call shell commands. However, unlike the Lua functions, these shell commands have to read the useful information and send messages via environment variables and temporary files called \"pipe\"s. These environment variables and files are only available when a command is being executed. Visit the fzf integration tutorial for example.","breadcrumbs":"Configuration » Message » Environment Variables and Pipes","id":"188","title":"Environment Variables and Pipes"},"189":{"body":"To see the environment variables, invoke the shell by typing :! in default mode and run the following command: env | grep ^XPLR_ You will see something like: XPLR_FOCUS_INDEX=0\nXPLR_MODE=action to\nXPLR_PIPE_SELECTION_OUT=/run/user/1000/xplr/session/122278/pipe/selection_out\nXPLR_INPUT_BUFFER=\nXPLR_PIPE_GLOBAL_HELP_MENU_OUT=/run/user/1000/xplr/session/122278/pipe/global_help_menu_out\nXPLR_PID=122278\nXPLR_PIPE_MSG_IN=/run/user/1000/xplr/session/122278/pipe/msg_in\nXPLR_PIPE_LOGS_OUT=/run/user/1000/xplr/session/122278/pipe/logs_out\nXPLR_PIPE_RESULT_OUT=/run/user/1000/xplr/session/122278/pipe/result_out\nXPLR_PIPE_HISTORY_OUT=/run/user/1000/xplr/session/122278/pipe/history_out\nXPLR_FOCUS_PATH=/home/sayanarijit/Documents/GitHub/xplr/docs/en/book\nXPLR_SESSION_PATH=/run/user/1000/xplr/session/122278\nXPLR_APP_VERSION=0.14.3\nXPLR_PIPE_DIRECTORY_NODES_OUT=/run/user/1000/xplr/session/122278/pipe/directory_nodes_out The environment variables starting with XPLR_PIPE_ are the temporary files called \"pipe\"s. Input pipe Current there is only one input pipe. XPLR_PIPE_MSG_IN Output pipes XPLR_PIPE_*_OUT are the output pipes that contain data which cannot be exposed directly via environment variables, like multi-line string. XPLR_PIPE_SELECTION_OUT XPLR_PIPE_GLOBAL_HELP_MENU_OUT XPLR_PIPE_LOGS_OUT XPLR_PIPE_RESULT_OUT XPLR_PIPE_HISTORY_OUT XPLR_PIPE_DIRECTORY_NODES_OUT XPLR_PIPE_MSG_IN Append new-line delimited messages to this pipe in YAML (or JSON ) syntax. These messages will be read and handled by xplr after the command execution. XPLR_PIPE_SELECTION_OUT New-line delimited list of selected paths. XPLR_PIPE_GLOBAL_HELP_MENU_OUT The full help menu. XPLR_PIPE_LOGS_OUT New-line delimited list of logs. XPLR_PIPE_RESULT_OUT New-line delimited result (selected paths if any, else the focused path) XPLR_PIPE_HISTORY_OUT New-line delimited list of last visited paths (similar to jump list in vim). XPLR_PIPE_DIRECTORY_NODES_OUT New-line delimited list of paths, filtered and sorted as displayed in the files table .","breadcrumbs":"Configuration » Message » Environment variables","id":"189","title":"Environment variables"},"19":{"body":"xplr-termuxfd3c398d3cf4bcbc.md.jpg Please note that xplr isn't heavily tested on Termux, hence things might need a little tweaking and fixing for a smooth usage experience. Install build dependencies pkg install rustc cargo make Install xplr cargo install --force xplr Setup storage termux-setup-storage Setup config and runtime dir export XDG_CONFIG_HOME=\"$PWD/storage/.config\"\nexport XDG_RUNTIME_DIR=\"$PWD/storage/run\" mkdir -p \"$XDG_CONFIG_HOME\" \"$XDG_RUNTIME_DIR\" Run ~/.cargo/bin/xplr","breadcrumbs":"Quickstart » Install » Termux","id":"19","title":"Termux"},"190":{"body":"xplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { BashExec = [===[ echo \"What's your name?\" read name greeting=\"Hello $name!\" message=\"$greeting You are inside $PWD\" echo LogSuccess: '\"'$message'\"' >> \"${XPLR_PIPE_MSG_IN:?}\" ]===] } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example:","id":"190","title":"Example:"},"191":{"body":"xplr layouts define the structure of the UI, i.e. how many panel we see, placement and size of the panels, how they look etc. This is configuration exposed via the xplr.config.layouts API. It contains the following fields: builtin custom The users can switch between these layouts at run-time.","breadcrumbs":"Configuration » Layouts » Layouts","id":"191","title":"Layouts"},"192":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.builtin API. xplr by default provides the following builtin layouts: default no_help no_selection no_help_no_selection","breadcrumbs":"Configuration » Layouts » builtin","id":"192","title":"builtin"},"193":{"body":"Type: Layout This is the default layout we see when we run xplr.","breadcrumbs":"Configuration » Layouts » default","id":"193","title":"default"},"194":{"body":"Type: Layout This layout hides the help menu.","breadcrumbs":"Configuration » Layouts » no_help","id":"194","title":"no_help"},"195":{"body":"Type: Layout This layout hides the selection panel.","breadcrumbs":"Configuration » Layouts » no_selection","id":"195","title":"no_selection"},"196":{"body":"Type: Layout This layout hides both the help menu and the selection panel.","breadcrumbs":"Configuration » Layouts » no_help_no_selection","id":"196","title":"no_help_no_selection"},"197":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.custom API. It allows the users to define any custom layout. Example: xplr.config.layouts.custom.example = \"Nothing\"\nxplr.config.general.initial_layout = \"example\" -- when you load xplr, you should see a blank screen","breadcrumbs":"Configuration » Layouts » custom","id":"197","title":"custom"},"198":{"body":"A layout can be one of the following: \"Nothing\" \"Table\" \"InputAndLogs\" \"Selection\" \"HelpMenu\" \"SortAndFilter\" { Horizontal = { config = Layout Config , splits = { Layout , ... } } { Vertical = { config = Layout Config , splits = { Layout , ... } }","breadcrumbs":"Configuration » Layouts » Layout","id":"198","title":"Layout"},"199":{"body":"This layout contains a blank panel.","breadcrumbs":"Configuration » Layouts » Nothing","id":"199","title":"Nothing"},"2":{"body":"xplr is built with configurability in mind. So it allows you to perform a vast set of operations and make it behave just the way you want. A few things you can do with the xplr configuration Hack the layout Hack the key bindings Extend with plugins","breadcrumbs":"Introduction » Hackable","id":"2","title":"Hackable"},"20":{"body":"Once installed , use the following steps to setup and run xplr.","breadcrumbs":"Quickstart » Post Install » Post Install","id":"20","title":"Post Install"},"200":{"body":"This layout contains the table displaying the files and directories in the current directory.","breadcrumbs":"Configuration » Layouts » Table","id":"200","title":"Table"},"201":{"body":"This layout contains the panel displaying the input prompt and logs.","breadcrumbs":"Configuration » Layouts » InputAndLogs","id":"201","title":"InputAndLogs"},"202":{"body":"This layout contains the panel displaying the selected paths.","breadcrumbs":"Configuration » Layouts » Selection","id":"202","title":"Selection"},"203":{"body":"This layout contains the panel displaying the help menu for the current mode in real-time.","breadcrumbs":"Configuration » Layouts » HelpMenu","id":"203","title":"HelpMenu"},"204":{"body":"This layout contains the panel displaying the pipeline of sorters and filters applied of the list of paths being displayed.","breadcrumbs":"Configuration » Layouts » SortAndFilter","id":"204","title":"SortAndFilter"},"205":{"body":"This is a special layout that splits the panel into two horizontal parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Horizontal","id":"205","title":"Horizontal"},"206":{"body":"This is a special layout that splits the panel into two vertical parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Vertical","id":"206","title":"Vertical"},"207":{"body":"A layout config contains the following information: margin horizontal_margin vertical_margin constraints","breadcrumbs":"Configuration » Layouts » Layout Config","id":"207","title":"Layout Config"},"208":{"body":"Type: nullable integer The width of the margin in all direction.","breadcrumbs":"Configuration » Layouts » margin","id":"208","title":"margin"},"209":{"body":"Type: nullable integer The width of the horizontal margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » horizontal_Margin","id":"209","title":"horizontal_Margin"},"21":{"body":"mkdir -p ~/.config/xplr version=\"$(xplr | grep ^version: | cut -d' ' -f 2)\" # When the app loads, press `#` echo version = '\"'${version:?}'\"' > ~/.config/xplr/init.lua Then copy from here and remove / comment out what you don't want to customize. Note: You don't generally need to create the config file. You can use the default configuration for basic operations. However, creating the config file is recommended because the project is in its early stage and the defaults might change. Creating the config file will save you from unexpected behavior when you upgrade . Also, the default configuration is meant to be overwritten to suit your workflow.","breadcrumbs":"Quickstart » Post Install » Create the customizable config file","id":"21","title":"Create the customizable config file"},"210":{"body":"Type: nullable integer The width of the vertical margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » vertical_Margin","id":"210","title":"vertical_Margin"},"211":{"body":"Type: nullable list of Constraint The constraints applied on the layout.","breadcrumbs":"Configuration » Layouts » constraints","id":"211","title":"constraints"},"212":{"body":"A constraint can be one of the following: { Percentage = int } { Ratio = { int, int } } { Length = { int } { LengthLessThanScreenHeight = int } { LengthLessThanScreenWidth = int } { LengthLessThanLayoutHeight = int } { LengthLessThanLayoutWidth = int } { Max = int } { MaxLessThanScreenHeight = int } { MaxLessThanScreenWidth = int } { MaxLessThanLayoutHeight = int } { MaxthLessThanLayoutWidth = int } { Min = int } { MinLessThanScreenHeight = int } { MinLessThanScreenWidth = int } { MinLessThanLayoutHeight = int } { MinLessThanLayoutWidth = int } TODO: document each constraint.","breadcrumbs":"Configuration » Layouts » Constraint","id":"212","title":"Constraint"},"213":{"body":"Type: list of Layout The list of child layouts to fit into the parent layout.","breadcrumbs":"Configuration » Layouts » splits","id":"213","title":"splits"},"214":{"body":"layout.png xplr.config.layouts.builtin.default = { Horizontal = { config = { margin = 1, horizontal_margin = 2, vertical_margin = 3, constraints = { { Percentage = 50 }, { Percentage = 50 }, } }, splits = { \"Table\", \"HelpMenu\", } }\n}","breadcrumbs":"Configuration » Layouts » Example","id":"214","title":"Example"},"215":{"body":"This configuration defines how to deal with different kinds of nodes (files, directories, symlinks etc.) in a directory. This can be configured using the xplr.config.node_types Lua API. It contains the following fields: directory file symlink mime_essence extension special One node can fall into multiple categories. For example, a node can have the extension md, and be a file. In that case, the properties from the more specific category i.e. extension will be used. The priority is: special > extension > mime_essence > symlink > file > directory","breadcrumbs":"Configuration » Node Types » Node Types","id":"215","title":"Node Types"},"216":{"body":"Type: NodeType Config Properties related to directories are defined here. Contains the following fields: Example: xplr.config.node_types.directory.meta.icon = \"\"\nxplr.config.node_types.directory.style.add_modifiers = { \"Bold\" }","breadcrumbs":"Configuration » Node Types » directory","id":"216","title":"directory"},"217":{"body":"Type: NodeType Config Properties related to regular files are defined here. Contains the following fields: Example: xplr.config.node_types.file.meta.icon = \"\"\nxplr.config.node_types.file.style.fg = \"White\"","breadcrumbs":"Configuration » Node Types » file","id":"217","title":"file"},"218":{"body":"Type: NodeType Config Properties related to symlink are defined here. Example: xplr.config.node_types.symlink.meta.icon = \"\"\nxplr.config.node_types.symlink.style.add_modifiers = { \"Italic\" }","breadcrumbs":"Configuration » Node Types » symlink","id":"218","title":"symlink"},"219":{"body":"Type: mapping of mime-type and mapping of mime-subtype and NodeType Config Properties related to files with specific mime types are defined here. It is possible to use the wildcard * to match all mime subtypes. It will be overwritten by the more specific sub types that are defined. Example: xplr.config.node_types.mime_essence = { application = { -- application/* [\"*\"] = { meta = { icon = \"a\" } } -- application/pdf pdf = { meta = { icon = \"\" } }, -- application/zip zip = { meta = { icon = \"\"} }, },\n}","breadcrumbs":"Configuration » Node Types » mime_essence","id":"219","title":"mime_essence"},"22":{"body":"xplr","breadcrumbs":"Quickstart » Post Install » Run","id":"22","title":"Run"},"220":{"body":"Type: mapping of extension and NodeType Config Properties related to files with specific extension are defined here. Example: xplr.config.node_types.extension.md = { meta = { icon = \"\" } }\nxplr.config.node_types.extension.rs = { meta = { icon = \"🦀\" } }","breadcrumbs":"Configuration » Node Types » extension","id":"220","title":"extension"},"221":{"body":"Type: mapping of name and NodeType Config Properties related to files and directories with special names are defined here. Example: xplr.config.node_types.special[\"Cargo.toml\"] = { meta = { icon = \"\" } }\nxplr.config.node_types.special[\"Downloads\"] = { meta = { icon = \"\" } }","breadcrumbs":"Configuration » Node Types » special","id":"221","title":"special"},"222":{"body":"A node-type config contains the following fields: meta style","breadcrumbs":"Configuration » Node Types » NodeType Config","id":"222","title":"NodeType Config"},"223":{"body":"Type: mapping of string and string A meta field can contain custom metadata about a node. By default, the \"icon\" metadata is set for the directory , file , and symlink nodes. Example: xplr.config.node_types.file = { meta = { icon = \"f\", foo = \"bar\", }\n}","breadcrumbs":"Configuration » Node Types » meta","id":"223","title":"meta"},"224":{"body":"A style object contains the following information: fg bg add_modifiers sub_modifiers","breadcrumbs":"Configuration » Style » Style","id":"224","title":"Style"},"225":{"body":"Type: nullable Color The foreground color.","breadcrumbs":"Configuration » Style » fg","id":"225","title":"fg"},"226":{"body":"Type: nullable Color The background color.","breadcrumbs":"Configuration » Style » bg","id":"226","title":"bg"},"227":{"body":"Type: nullable list of Modifier Modifiers to add.","breadcrumbs":"Configuration » Style » add_modifiers","id":"227","title":"add_modifiers"},"228":{"body":"Type: nullable list of Modifier Modifiers to remove.","breadcrumbs":"Configuration » Style » sub_modifiers","id":"228","title":"sub_modifiers"},"229":{"body":"Color can be one of the following: \"Reset\" \"Black\" \"Red\" \"Green\" \"Yellow\" \"Blue\" \"Magenta\" \"Cyan\" \"Gray\" \"DarkGray\" \"LightRed\" \"LightGreen\" \"LightYellow\" \"LightBlue\" \"LightMagenta\" \"LightCyan\" \"White\" { Rgb = { int, int, int } } { Indexed = int }","breadcrumbs":"Configuration » Style » Color","id":"229","title":"Color"},"23":{"body":"xplr can be configured using Lua via a special file named init.lua ( example ), which can be placed in ~/.config/xplr/ (user specific) or /etc/xplr/ (global) depending on the use case. When a user specific configuration is available, the global configuration file will be ignored. However, it's also possible to place the file anywhere, with any name and use the command-line argument -c / --config to specify its path explicitely. In that case, both ~/.config/xplr/init.lua and /etc/xplr/init.lua will be ignored.","breadcrumbs":"Configuration » Configuration","id":"23","title":"Configuration"},"230":{"body":"Modifier can be one of the following: \"Bold\" \"Dim\" \"Italic\" \"Underlined\" \"SlowBlink\" \"RapidBlink\" \"Reversed\" \"Hidden\" \"CrossedOut\"","breadcrumbs":"Configuration » Style » Modifier","id":"230","title":"Modifier"},"231":{"body":"xplr.config.general.cursor.style.fg = \"Red\"\nxplr.config.general.cursor.style.bg = { Rgb = { 100, 150, 200 } }\nxplr.config.general.cursor.style.add_modifiers = { \"Bold\", \"Italic\" }\nxplr.config.general.cursor.style.sub_modifiers = { \"Hidden\" }","breadcrumbs":"Configuration » Style » Example","id":"231","title":"Example"},"232":{"body":"xplr supports sorting paths by different properties. The sorting mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: size↑ › [i]rel↓ › [c]dir↑ › [c]file↑ › sym↑ This line means that the nodes visible in the table will be first sorted by it's size, then by case insensitive relative path, then by the canonical (symlink resolved) type of the node, and finally by whether or not the node is a symlink. The arrows denote the order. Each part of this pipeline is called Node Sorter Applicable .","breadcrumbs":"Configuration » Sorting » Sorting","id":"232","title":"Sorting"},"233":{"body":"It contains the following information: sorter reverse","breadcrumbs":"Configuration » Sorting » Node Sorter Applicable","id":"233","title":"Node Sorter Applicable"},"234":{"body":"A sorter can be one of the following: \"ByRelativePath\" \"ByIRelativePath\" \"ByExtension\" \"ByIsDir\" \"ByIsFile\" \"ByIsSymlink\" \"ByIsBroken\" \"ByIsReadonly\" \"ByMimeEssence\" \"BySize\" \"ByCanonicalAbsolutePath\" \"ByICanonicalAbsolutePath\" \"ByCanonicalExtension\" \"ByCanonicalIsDir\" \"ByCanonicalIsFile\" \"ByCanonicalIsReadonly\" \"ByCanonicalMimeEssence\" \"ByCanonicalSize\" \"BySymlinkAbsolutePath\" \"ByISymlinkAbsolutePath\" \"BySymlinkExtension\" \"BySymlinkIsDir\" \"BySymlinkIsFile\" \"BySymlinkIsReadonly\" \"BySymlinkMimeEssence\" \"BySymlinkSize\" TODO: document each","breadcrumbs":"Configuration » Sorting » sorter","id":"234","title":"sorter"},"235":{"body":"Type: boolean It defined the direction of the order.","breadcrumbs":"Configuration » Sorting » reverse","id":"235","title":"reverse"},"236":{"body":"xplr.config.general.initial_sorting = { { sorter = \"ByCanonicalIsDir\", reverse = true }, { sorter = \"ByIRelativePath\", reverse = false },\n} This snippet defines the initial sorting logic to be applied when xplr loads.","breadcrumbs":"Configuration » Sorting » Example","id":"236","title":"Example"},"237":{"body":"xplr supports filtering paths by different properties. The filtering mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: rel!^. › [i]abs=~abc › [i]rel!~xyz This line means that the nodes visible on the table will first be filtered by the condition: relative path does not start with . , then by the condition: absolute path contains abc (case insensitive) , and finally by the condition: relative path does not contain xyz (case insensitive). Each part of this pipeline is called Node Filter Applicable .","breadcrumbs":"Configuration » Filtering » Filtering","id":"237","title":"Filtering"},"238":{"body":"It contains the following information: filter input","breadcrumbs":"Configuration » Filtering » Node Filter Applicable","id":"238","title":"Node Filter Applicable"},"239":{"body":"A filter can be one of the following: \"RelativePathIs\" \"RelativePathIsNot\" \"IRelativePathIs\" \"IRelativePathIsNot\" \"RelativePathDoesStartWith\" \"RelativePathDoesNotStartWith\" \"IRelativePathDoesStartWith\" \"IRelativePathDoesNotStartWith\" \"RelativePathDoesContain\" \"RelativePathDoesNotContain\" \"IRelativePathDoesContain\" \"IRelativePathDoesNotContain\" \"RelativePathDoesEndWith\" \"RelativePathDoesNotEndWith\" \"IRelativePathDoesEndWith\" \"IRelativePathDoesNotEndWith\" \"AbsolutePathIs\" \"AbsolutePathIsNot\" \"IAbsolutePathIs\" \"IAbsolutePathIsNot\" \"AbsolutePathDoesStartWith\" \"AbsolutePathDoesNotStartWith\" \"IAbsolutePathDoesStartWith\" \"IAbsolutePathDoesNotStartWith\" \"AbsolutePathDoesContain\" \"AbsolutePathDoesNotContain\" \"IAbsolutePathDoesContain\" \"IAbsolutePathDoesNotContain\" \"AbsolutePathDoesEndWith\" \"AbsolutePathDoesNotEndWith\" \"IAbsolutePathDoesEndWith\" \"IAbsolutePathDoesNotEndWith\" TODO: document each","breadcrumbs":"Configuration » Filtering » filter","id":"239","title":"filter"},"24":{"body":"When xplr loads, it first executes the built-in init.lua to set the default values, which is then overwritten by another config file, if found using the following lookup order: --config /path/to/init.lua > ~/.config/xplr/init.lua > /etc/xplr/init.lua","breadcrumbs":"Configuration » How Config Is Loaded","id":"24","title":"How Config Is Loaded"},"240":{"body":"Type: string The input for the condition.","breadcrumbs":"Configuration » Filtering » input","id":"240","title":"input"},"241":{"body":"ToggleNodeFilter = { filter = \"RelativePathDoesNotStartWith\", input = \".\"\n} Here, ToggleNodeFilter is a message that adds or removes (toggles) the filter applied.","breadcrumbs":"Configuration » Filtering » Example:","id":"241","title":"Example:"},"242":{"body":"A column renderer is a Lua function that receives a special argument and returns a string that will be displayed in each specific field of the files table . xplr by default provides the following column renderers: xplr.fn.builtin.fmt_general_table_row_cols_0 xplr.fn.builtin.fmt_general_table_row_cols_1 xplr.fn.builtin.fmt_general_table_row_cols_2 xplr.fn.builtin.fmt_general_table_row_cols_3 xplr.fn.builtin.fmt_general_table_row_cols_4 You can either overwrite these functions, or create new functions in xplr.fn.custom and point to them. Terminal colors are supported.","breadcrumbs":"Configuration » Column Renderer » Column Renderer","id":"242","title":"Column Renderer"},"243":{"body":"The special argument contains the following fields parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink index relative_index is_before_focus is_after_focus tree prefix suffix is_selected is_focused total meta","breadcrumbs":"Configuration » Column Renderer » Table Renderer Argument","id":"243","title":"Table Renderer Argument"},"244":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Column Renderer » parent","id":"244","title":"parent"},"245":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Column Renderer » relative_path","id":"245","title":"relative_path"},"246":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Column Renderer » absolute_path","id":"246","title":"absolute_path"},"247":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Column Renderer » extension","id":"247","title":"extension"},"248":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Column Renderer » is_symlink","id":"248","title":"is_symlink"},"249":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Column Renderer » is_broken","id":"249","title":"is_broken"},"25":{"body":"The xplr configuration, exposed as xplr.config Lua API contains the following fields: general modes layouts node_types","breadcrumbs":"Configuration » config","id":"25","title":"config"},"250":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Column Renderer » is_dir","id":"250","title":"is_dir"},"251":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Column Renderer » is_file","id":"251","title":"is_file"},"252":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Column Renderer » is_readonly","id":"252","title":"is_readonly"},"253":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Column Renderer » mime_essence","id":"253","title":"mime_essence"},"254":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Column Renderer » size","id":"254","title":"size"},"255":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Column Renderer » human_size","id":"255","title":"human_size"},"256":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Column Renderer » permissions","id":"256","title":"permissions"},"257":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Column Renderer » canonical","id":"257","title":"canonical"},"258":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Column Renderer » symlink","id":"258","title":"symlink"},"259":{"body":"Type: integer Index (starting from 0) of the node.","breadcrumbs":"Configuration » Column Renderer » index","id":"259","title":"index"},"26":{"body":"This configuration is exposed via the xplr.config.general API. It contains the following fields:","breadcrumbs":"Configuration » General Config » General Config","id":"26","title":"General Config"},"260":{"body":"Type: integer Relative index from the focused node (i.e. 0th node).","breadcrumbs":"Configuration » Column Renderer » relative_index","id":"260","title":"relative_index"},"261":{"body":"Type: boolean true if the node is before the focused node.","breadcrumbs":"Configuration » Column Renderer » is_before_focus","id":"261","title":"is_before_focus"},"262":{"body":"Type: boolean true if the node is after the focused node.","breadcrumbs":"Configuration » Column Renderer » is_after_focus","id":"262","title":"is_after_focus"},"263":{"body":"Type: string The tree component based on the node's index.","breadcrumbs":"Configuration » Column Renderer » tree","id":"263","title":"tree"},"264":{"body":"Type: string The prefix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » prefix","id":"264","title":"prefix"},"265":{"body":"Type: string The suffix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » suffix","id":"265","title":"suffix"},"266":{"body":"Type: boolean true if the node is selected.","breadcrumbs":"Configuration » Column Renderer » is_selected","id":"266","title":"is_selected"},"267":{"body":"Type: boolean true if the node is under focus.","breadcrumbs":"Configuration » Column Renderer » is_focused","id":"267","title":"is_focused"},"268":{"body":"Type: integer The total number of the nodes.","breadcrumbs":"Configuration » Column Renderer » total","id":"268","title":"total"},"269":{"body":"Type: mapping of string and string The applicable meta object for the node.","breadcrumbs":"Configuration » Column Renderer » meta","id":"269","title":"meta"},"27":{"body":"Type: boolean Set it to true enable scrolling using mouse.","breadcrumbs":"Configuration » General Config » enable_mouse","id":"27","title":"enable_mouse"},"270":{"body":"Permission contains the following fields: user_read user_write user_execute group_read group_write group_execute other_read other_write other_execute sticky setgid setuid Each field holds a boolean value.","breadcrumbs":"Configuration » Column Renderer » Permission","id":"270","title":"Permission"},"271":{"body":"It contains the following fields. absolute_path extension is_dir is_file is_readonly mime_essence size human_size","breadcrumbs":"Configuration » Column Renderer » Resolved Node Metadata","id":"271","title":"Resolved Node Metadata"},"272":{"body":"xplr.fn.custom.fmt_simple_column = function(m) return m.prefix .. m.relative_path .. m.suffix\nend xplr.config.general.table.header.cols = { { format = \" path\" }\n} xplr.config.general.table.row.cols = { { format = \"custom.fmt_simple_column\" }\n} xplr.config.general.table.col_widths = { { Percentage = 100 }\n} -- With this config, you should only see a single column displaying the\n-- relative paths.","breadcrumbs":"Configuration » Column Renderer » Example","id":"272","title":"Example"},"273":{"body":"The default key binding is inspired by vim and slightly overlaps with nnn , but it's supposed to be customized as per user requirements. When you press ? in default mode , you can see the complete list of modes and the key mappings for each mode.","breadcrumbs":"Default Key Bindings » Default Key Bindings","id":"273","title":"Default Key Bindings"},"274":{"body":"key remaps action . show hidden / ctrl-f search : action ? global help menu G go to bottom V ctrl-a select/unselect all ctrl-c terminate ctrl-i tab next visited path ctrl-o last visited path ctrl-r refresh screen ctrl-u clear selection ctrl-w switch layout d delete down j down enter quit with result f filter g go to h left back k up up l right enter q quit r rename s sort space v toggle selection ~ go home [0-9] input","breadcrumbs":"Default Key Bindings » default","id":"274","title":"default"},"275":{"body":"key remaps action ctrl-c terminate esc escape","breadcrumbs":"Default Key Bindings » recover","id":"275","title":"recover"},"276":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"276","title":"filter"},"277":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word down j to down enter to index esc cancel k up to up [0-9] input","breadcrumbs":"Default Key Bindings » number","id":"277","title":"number"},"278":{"body":"key remaps action ctrl-c terminate esc cancel f follow symlink g top x open in gui","breadcrumbs":"Default Key Bindings » go to","id":"278","title":"go to"},"279":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-n down down ctrl-p up up ctrl-u remove line ctrl-w remove last word enter esc focus left back right enter tab toggle selection","breadcrumbs":"Default Key Bindings » search","id":"279","title":"search"},"28":{"body":"Type: boolean Set it to true to show hidden files.","breadcrumbs":"Configuration » General Config » show_hidden","id":"28","title":"show_hidden"},"280":{"body":"key remaps action c copy here ctrl-c terminate esc cancel m move here x open in gui","breadcrumbs":"Default Key Bindings » selection ops","id":"280","title":"selection ops"},"281":{"body":"key remaps action ! shell c create ctrl-c terminate e open in editor esc cancel l logs m toggle mouse q quit options s selection operations [0-9] go to index","breadcrumbs":"Default Key Bindings » action to","id":"281","title":"action to"},"282":{"body":"key remaps action ctrl-c terminate d create directory esc cancel f create file","breadcrumbs":"Default Key Bindings » create","id":"282","title":"create"},"283":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create file esc cancel","breadcrumbs":"Default Key Bindings » create file","id":"283","title":"create file"},"284":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create directory esc cancel","breadcrumbs":"Default Key Bindings » create directory","id":"284","title":"create directory"},"285":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter rename esc cancel","breadcrumbs":"Default Key Bindings » rename","id":"285","title":"rename"},"286":{"body":"key remaps action D force delete ctrl-c terminate d delete esc cancel","breadcrumbs":"Default Key Bindings » delete","id":"286","title":"delete"},"287":{"body":"key remaps action ! reverse sorters E by canonical extension reverse M by canonical mime essence reverse N by node type reverse R by relative path reverse S by size reverse backspace remove last sorter ctrl-c terminate ctrl-r reset sorters ctrl-u clear sorters e by canonical extension enter esc done m by canonical mime essence n by node type r by relative path s by size","breadcrumbs":"Default Key Bindings » sort","id":"287","title":"sort"},"288":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"288","title":"filter"},"289":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does contain","id":"289","title":"relative path does contain"},"29":{"body":"Type: boolean Set it to true to use only a subset of selected operations that forbids executing commands or performing write operations on the file-system.","breadcrumbs":"Configuration » General Config » read_only","id":"29","title":"read_only"},"290":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does not contain","id":"290","title":"relative path does not contain"},"291":{"body":"key remaps action 1 default 2 no help menu 3 no selection panel 4 no help or selection ctrl-c terminate esc cancel","breadcrumbs":"Default Key Bindings » switch layout","id":"291","title":"switch layout"},"292":{"body":"xplr supports pluggable Lua modules that can be used to easily configure or extend xplr UI and functionalities. Installing Plugins Writing Plugins Awesome Plugins","breadcrumbs":"Plugin » Plugin","id":"292","title":"Plugin"},"293":{"body":"Until we get a cool plugin manager, let's install plugins manually using the following procedure: Add the following line in ~/.config/xplr/init.lua package.path = os.getenv(\"HOME\") .. '/.config/xplr/plugins/?/src/init.lua' Clone the plugin mkdir -p ~/.config/xplr/plugins git clone https://github.com/sayanarijit/material-landscape2.xplr ~/.config/xplr/plugins/material-landscape2 Require the module in ~/.config/xplr/init.lua require(\"material-landscape2\").setup() -- The setup arguments might differ for different plugins.\n-- Visit the project README for setup instructions.","breadcrumbs":"Plugin » Installing Plugins » Installing Plugins","id":"293","title":"Installing Plugins"},"294":{"body":"Anyone who can write Lua code, can write xplr plugins. Just follow the instructions and best practices:","breadcrumbs":"Plugin » Writing Plugins » Writing Plugins","id":"294","title":"Writing Plugins"},"295":{"body":"xplr plugins are named using hiphen (-) separated words that may also include integers. They will be plugged using the require() function in Lua.","breadcrumbs":"Plugin » Writing Plugins » Naming","id":"295","title":"Naming"},"296":{"body":"A minimal plugin should confirm to the following structure: plugin-name\n├── README.md\n└── src └── init.lua You can also use this template .","breadcrumbs":"Plugin » Writing Plugins » Structure","id":"296","title":"Structure"},"297":{"body":"This is where you document what the plugin does, how to use it, etc.","breadcrumbs":"Plugin » Writing Plugins » README.md","id":"297","title":"README.md"},"298":{"body":"This file is executed to load the plugin. It should expose a setup() function, which will be used by the users to setup the plugin. Example: local function setup(args) local xplr = xplr -- do stuff with xplr\nend return { setup = setup }","breadcrumbs":"Plugin » Writing Plugins » src/init.lua","id":"298","title":"src/init.lua"},"299":{"body":"When publishing plugins on GitHub or other repositories, it's a best practice to append .xplr to the name to make them distinguishable. Similar to the *.nvim naming convention for Neovim plugins. Finally, after publishing, don't hesitate to let us know .","breadcrumbs":"Plugin » Writing Plugins » Publishing","id":"299","title":"Publishing"},"3":{"body":"Although speed is not the primary concern, xplr is already fast enough so that you can take it out for a walk into your node_modules or /nix/store any time you want. I currently measure the most commonly used operations and I have seen it improve significantly over time, and it's only the start. Tip: A quick and easy way to optimize UI rendering is reducing the number of columns in the table. Note: If you feel xplr is not behaving at its optimal, this is probably because I am waiting for someone to complain. I want to avoid optimizing things I don't need to, because optimization often requires either complexity or feature sacrifice or both.","breadcrumbs":"Introduction » Fast","id":"3","title":"Fast"},"30":{"body":"Type: boolean Set it to true when the special recover mode gets too annoying to appreciate the good intentions. When enabled, typing the wrong keys won't result in any action.","breadcrumbs":"Configuration » General Config » disable_recover_mode","id":"30","title":"disable_recover_mode"},"300":{"body":"Visit Awesome Plugins for xplr plugin examples.","breadcrumbs":"Plugin » Writing Plugins » Examples","id":"300","title":"Examples"},"301":{"body":"Here's a list of awesome xplr plugins that you might want to check out. If none of the following plugins work for you, it's very easy to write your own .","breadcrumbs":"Plugin » Awesome Plugins » Awesome Plugins","id":"301","title":"Awesome Plugins"},"302":{"body":"Extension Integration Theme","breadcrumbs":"Plugin » Awesome Plugins » Categories","id":"302","title":"Categories"},"303":{"body":"type-to-nav.xplr Inspired by nnn's type-to-nav mode for xplr, with some tweaks. completion.xplr The missing tab completion for xplr input buffer. comex.xplr One xplr plugin to compress and extract them all.","breadcrumbs":"Plugin » Awesome Plugins » Extension","id":"303","title":"Extension"},"304":{"body":"dragon.xplr Drag and drop files using dragon . dua-cli.xplr Get the disk usage using dua-cli with selection support. fzf.xplr Fuzzy search using fzf to focus on a file or enter into a directory. paste-rs.xplr Use this plugin to paste your files to paste.rs , and open/delete them later using fzf . preview-tabbed.xplr Preview paths using suckless tabbed and nnn preview-tabbed . qrcp.xplr Send and receive files via QR code using qrcp . trash-cli.xplr Trash files and directories using trash-cli . xargs.xplr Batch execute commands on the focused or selected files using xargs. xclip.xplr Copy and paste with system clipboard using xclip . zoxide.xplr Change directory using the zoxide database.","breadcrumbs":"Plugin » Awesome Plugins » Integration","id":"304","title":"Integration"},"305":{"body":"material-landscape.xplr Material Landscape material-landscape2.xplr Material Landscape 2 zentable.xplr A clean, distraction free xplr table UI icons.xplr An icon theme for xplr.","breadcrumbs":"Plugin » Awesome Plugins » Theme","id":"305","title":"Theme"},"306":{"body":"xplr is designed to integrate well with other tools and commands. It can be used as a file picker or a pluggable file manager. Awesome Integrations","breadcrumbs":"Integration » Integration","id":"306","title":"Integration"},"307":{"body":"Here's a list of awesome xplr integrations that you might want to check out. If none of the following integrations work for you, you can create your own and let us know .","breadcrumbs":"Integration » Awesome Integrations » Awesome Integrations","id":"307","title":"Awesome Integrations"},"308":{"body":"Editor Shell Security Tools","breadcrumbs":"Integration » Awesome Integrations » Categories","id":"308","title":"Categories"},"309":{"body":"xplr.vim vim-floaterm","breadcrumbs":"Integration » Awesome Integrations » Editor","id":"309","title":"Editor"},"31":{"body":"Type: nullable string This is the shape of the cursor visible when the input buffer contains some string.","breadcrumbs":"Configuration » General Config » cursor.format","id":"31","title":"cursor.format"},"310":{"body":"powerlevel10k","breadcrumbs":"Integration » Awesome Integrations » Shell","id":"310","title":"Shell"},"311":{"body":"gpg-tui","breadcrumbs":"Integration » Awesome Integrations » Security Tools","id":"311","title":"Security Tools"},"312":{"body":"Saner key bindings. Pipes. Native search & filter. Create, copy, move, delete files directly. logging support. Version compatibility instructions. Implement CLI arguments. ~Add support for tabs and/or panes (non native)~ hacked | discussion ~Implement bookmarks.~ hacked Add sorting support. Add filter support. File previews. Implement plugins support (or some way to easily share configuration). Bigger (and better) help menu. Offline docs. Support for background services. ~Customize~ switch UI in run-time. More tests and benchmarks. Measure code coverage. Improve the vim plugin . Cleanup, refactor, optimize. add more Like this project so far? Please consider contributing .","breadcrumbs":"TODO » TODO","id":"312","title":"TODO"},"313":{"body":"These are the alternative TUI/CLI file managers/explorers you might want to check out (in no particular order). nnn vifm ranger lf joshuto fff mc broot hunter noice clifm clifm (non curses) add more","breadcrumbs":"Alternatives » Alternatives","id":"313","title":"Alternatives"},"314":{"body":"When you upgrade xplr, you might see an error like this Incompatible script version in: /home/sayanarijit/.config/xplr/init.lua. The script version is: 0.9.0, the required version is: 0.10.1. Visit https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide All you need to do is follow the instructions starting from your config version, all the way to the required version. Expand for more information With every update, we either implement a major breaking change (e.g. deprecating or replacing messages), or a minor feature addition (e.g. adding new messages) or patch, fixes, and optimization (e.g. performance optimization). Knowing that we use the {major}.{minor}.{patch} versioning format, Major version mismatch are generally incompatible. xplr will fail with error. Minor version upgrades (not downgrades) and patch fixes are backwards compatible. You might get notified by log a message which you can disable by updating the version in your config file. However, if the config file has a higher value for the minor version than the app, then also xplr will fail with error, suggesting you to visit this page. Though in that case, you will be downgrading your config file based on your app version. e.g. 1.0.0 -> 1.0.x: Bug fix (fully compatible). 1.0.0 -> 1.x.x: Only backwards compatible. You can't generally use for e.g. app-1.0.0 with config-1.1.0. But vice versa is fine. 1.0.0 -> x.x.x: Not compatible at all. Note that until we're v1, we'll be using the {minor} version number as {major}, and the {patch} fix number as {minor} to determine compatibility.","breadcrumbs":"Upgrade Guide » Upgrade Guide","id":"314","title":"Upgrade Guide"},"315":{"body":"v0.13.7 -> v0.14.5 macOS users need to place their config file (init.lua) in $HOME/.config/xplr/ or /etc/xplr/. Library users please refer to the latest API docs. Check out the new messages: {Start|Stop|Toggle}Fifo. These enable support for FIFO based file previews . You can disable the recover mode using config.general.disable_recover_mode = true. Try running xplr --help. Yes, CLI has been implemented. Since version v0.14.3, StartFifo and ToggleFifo will write to the FIFO path when called. So, there's no need to pipe the focus path explicitely. Since version v0.14.3, general config xplr.config.start_fifo is available which can be set to a file path to start a fifo when xplr starts. Since version v0.14.4, $XPLR_SESSION_PATH can be used to dump session related data. Like this project so far? Please consider contributing . v0.12.1 -> v0.13.7 Lua functions called using CallLua and CallLuaSilently messages will receive CallLuaArg object as the function argument (instead of the App object). Each node_types config will inherit defaults from matching less specifig node_types config and overwrite them. Since version v0.13.2, you don't need to use/send Refresh anymore. It will be auto-handled by xplr. v0.11.1 -> v0.12.1 xplr.config.node_types.mime_essence has split into type and subtype. Hence, instead of xplr.config.node_types.mime_essence[\"text/plain\"] = .. use xplr.config.node_types.mime_essence[\"text\"] = { plain = .. }. You can also define xplr.config.node_types.mime_essence[\"text\"][\"*\"] that will match all text types (text/*). v0.10.2 -> v0.11.1 remaps: has been removed to avoid confusion. Use lua assignments instead. For e.g. xplr.config.modes.builtin.default.key_bindings.on_key[\"v\"] = xplr.config.modes.builtin.default.key_bindings.on_key.space v0.9.1 -> v0.10.2 config.yml has been fully replaced with init.lua . If you have a lot of customization in your config.yml, xplr-yml2lua can help you with migrating it to init.lua. Handlebars templates has been replaced with Lua functions . You can either remove the customizations or overwrite the functions accordingly. Added new messages CallLua and CallLuaSilently to call lua functions. The app state will be passed as input to the functions, and the returned messages will be handled by xplr. CallLua and CallLuaSilently are more flexible (and probably faster) alternatives to Call, CallSilently, BashExec and BashExecSilently. e.g. v0.9.0 -> v0.9.1 You can now set remaps: {key: null} to un-map a key. gx will open the item under focus. New key map :sx will open the selected items. v0.8.0 -> v0.9.0 Your previous config should mostly work fine. However, in case you are using SwitchMode heavily in your custom config, follow along. Introduced new message PopMode. You might want to use this message instead of SwitchMode* when returning back to the previous mode. After using (the group of) PopMode and SwitchMode* messages, you are now required to Refresh manually to avoid the UI lag. Pressing any invalid key will now lead you to the recover mode and will protect you from typing further invalid keys. Press esc to escape the recover mode. Introduced new message LogWarning, similar to other Log* messages. Creating files and directories has been optimized for batch creation. v0.7.2 -> v0.8.0 If you have made changes to the config file, Replace message Explore with ExplorePwd or ExplorePwdAsync or probably ExploreParentsAsync. Pipe $XPLR_PIPE_FOCUS_OUT has been removed. Use $XPLR_FOCUS_PATH env var instead. You might want to review your path escaping logics. For e.g. use echo FocusPath: \"'\"$PWD\"'\" >> $PIPE instead of echo \"FocusPath: $PWD\" >> $PIPE. v0.7.0 -> v0.7.2 Just update the version in your config file. For version >= v0.7.1, you might want to free up or remap the tab key in search mode to enable easy selection during search. v0.6.0 -> v0.7.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, You can make the Table: ..., InputAndLogs: ... layout values null and define the common properties in the general.panel_ui instead. v0.5.13 -> v0.6.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, Rename add_modifier: {bits: 1} to add_modifiers: [Bold], sub_modifier: {bits: 1} to sub_modifiers: [Bold] and so on. Rename percentage: 10 to Percentage: 10, ratio: 1 to Ratio: 1 and so on. You might want to free up or remap the ctrl-w key binding in default mode to enable layout switching. Optionally, checkout this new theme to learn more about what's new. v0.5.0 -> v0.5.13 Just update the version in your config file. For versions >= v0.5.8, you can set $OPENER env var to declare a global GUI file opener (to open files using keys gx). You might also want to update other mappings to handle files with names starting with - (hiphen). For example, instead of rm ${filename} use rm -- ${filename}. Same goes for cp, mv, cat, touch etc. For version >= v0.5.13, you might want to use the more specific SwitchModeBuiltin and SwitchModeCustom messages instead of the general SwitchMode message. v0.4.3 -> v0.5.0 If you haven't have any changes in the config file, you should be fine just updating the version number. Else do the following Replace {RelativePathIs, case_sensitive: true} with RelativePathIs. Replace {RelativePathIs, case_sensitive: false} with IRelativePathIs. Do the same with other filters you are using. You might want to update your backspace handling to use the RemoveInputBufferLastCharacter message. You might want to free-up f, s, ctrl-r and ctrl-u key bindings in the default mode, or remap them. You might want to use the new UI variables. Update your config version to v0.5.0. v0.4.2 -> v0.4.3 If you have customized general.table.row.cols, you might want to update it to use the new variables with better symlink support. v0.4.1 -> v0.4.2 In case you have mapped the keys q, ctrl-i and ctrl-o, you may want to revisit the default mode key bindings and remap accordingly to use the new functionalities. v0.3.13 -> v0.4.1 A lot has changed (apologies). But I promise from now on, upgrading will be much less painful (thanks to @maximbaz 's valuable inputs and code reviews ). So, to start with the upgrade, let's remove everything from your config file except the version field and your custom modifications. If version is the only thing remaining, update it to v0.4.1 and you are done. Else, do the following Rename general.focused_ui to general.focus_ui ( see here ). Rename filetypes to node_types. ( see here ) Rename custom field to meta. ( see here ) Move icon to meta.icon. ( see here ) Rename normal_ui to default_ui. ( see here ) Split modes into modes.builtin and modes.custom ( see here ). Migrate your custom modes to modes.custom. And copy only the changes in the in-built modes in modes.builtin. Finally, update the version to v0.4.1. v0.3.8 -> v0.3.13 Your current config should work fine. However, you might want to replace some Call and BashExec messages with CallSilently and BashExecSilently to remove the flickering of the screen. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for Call and BashExec in the new config. Compare and probably replace the associated actions in your current config v0.3.0 -> v0.3.8 Your current config should work fine. However, you might want to replace some ResetNodeFilters messages with RemoveNodeFilter and RemoveNodeFilterFromInput to get a better search and filter experience. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for RemoveNodeFilterFromInput in the new config. Compare and probably replace the associated actions in your current config. v0.2.14 -> v0.3.0 If you haven't made any changes to the configuration, you can delete and regenerate it. Else do the following: $XPLR_APP_YAML has been removed. You can use Debug to export the app state. $XPLR_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_GLOBAL_HELP_MENU has been ported to file $XPLR_PIPE_GLOBAL_HELP_MENU_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_DIRECTORY_NODES has been ported to file $XPLR_PIPE_DIRECTORY_NODES_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_LOGS has been ported to file $XPLR_PIPE_LOGS_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_PIPE_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. Finally, update the version in your config file.","breadcrumbs":"Upgrade Guide » Instructions","id":"315","title":"Instructions"},"316":{"body":"Building an active community of awesome people and learning stuff together is one of my reasons to publish this tool and maintain it. Hence, please feel free to reach out via your preferred way. Real-time chat lovers can join our discord channel . Forum discussion veterans can start a new GitHub discussion . BTW I like Miyazaki and Shinkai works.","breadcrumbs":"Community » Community","id":"316","title":"Community"},"317":{"body":"If you like xplr, and want to contribute, that would be really awesome. You can contribute to this project in the following ways Contribute your time and expertise (read CONTRIBUTING.md for instructions). Developers: You can help me improve my code, fix things, implement features etc. Repository maintainers: You can save the users from the pain of managing xplr in their system manually. Code Reviewers: Teach me your ways of code. Designers: You can make the logo even more awesome, donate stickers and blog post worthy pictures. Bloggers, YouTubers & broadcasters: You can help spread the word. Contribute by donating. You can fuel me with coins of encouragement or buy me a coffee . For further queries or concern related to xplr, just ask us .","breadcrumbs":"Contribute » Backers","id":"317","title":"Backers"},"32":{"body":"Type: Style Style of the cursor.","breadcrumbs":"Configuration » General Config » cursor.style","id":"32","title":"cursor.style"},"33":{"body":"Type: string The name of one of the layout to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_layout","id":"33","title":"initial_layout"},"34":{"body":"Type: string The name of one of the mode to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_mode","id":"34","title":"initial_mode"},"35":{"body":"Type: list of Node Sorter Applicable Initial group if sorters applied to the nodes list in the table.","breadcrumbs":"Configuration » General Config » initial_sorting","id":"35","title":"initial_sorting"},"36":{"body":"Type: Style Default style of the table.","breadcrumbs":"Configuration » General Config » table.style","id":"36","title":"table.style"},"37":{"body":"Type: nullable integer Default spacing of the columns in the table.","breadcrumbs":"Configuration » General Config » table.col_spacing","id":"37","title":"table.col_spacing"},"38":{"body":"Type: nullable list of Constraint Width of each column in the table.","breadcrumbs":"Configuration » General Config » table.col_widths","id":"38","title":"table.col_widths"},"39":{"body":"Type: nullable integer Height of the table header.","breadcrumbs":"Configuration » General Config » table.header.height","id":"39","title":"table.header.height"},"4":{"body":"xplr prefers to stay minimal, both in terms of features and binary size, but just like speed, minimalism isn't as aggressively pursued as configurability. If adding some feature, lines of code, or a dependency allows the users to be a little more productive or allows xplr to be a little more configurable, it will be considered. But of-course, the bulk vs productivity gain per user balance will also be considered in the decision-making.","breadcrumbs":"Introduction » Minimalist","id":"4","title":"Minimalist"},"40":{"body":"Type: Style Style of table header.","breadcrumbs":"Configuration » General Config » table.header.style","id":"40","title":"table.header.style"},"41":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ), that define the content and style of header.","breadcrumbs":"Configuration » General Config » table.header.cols","id":"41","title":"table.header.cols"},"42":{"body":"Type: nullable integer Height of each row in the table.","breadcrumbs":"Configuration » General Config » table.row.height","id":"42","title":"table.row.height"},"43":{"body":"Type: Style Style of table rows.","breadcrumbs":"Configuration » General Config » table.row.style","id":"43","title":"table.row.style"},"44":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ). However, unlike table.header.cols , the format field here points to a column renderer function .","breadcrumbs":"Configuration » General Config » table.row.cols","id":"44","title":"table.row.cols"},"45":{"body":"Type: List of tree configuration It expects a list of three items. The first component of the tree, then the middle components, and finally the last component of the tree. Each item requires the format field which is a string, and the style field, which is the Style object. Example: xplr.config.general.table.tree = { { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"╰─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } },\n} TODO: Continue documentation.","breadcrumbs":"Configuration » General Config » table.tree","id":"45","title":"table.tree"},"46":{"body":"xplr is a modal file explorer. That means the users switch between different modes, each containing a different set of key bindings to avoid clashes. Users can switch between these modes at run-time. The modes can be configured using the xplr.config.modes Lua API. It contains the following fields: builtin custom","breadcrumbs":"Configuration » Modes » Modes","id":"46","title":"Modes"},"47":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.builtin API. xplr by default provides the following builtin modes: default recover selection_ops create create_directory create_file number go_to rename delete action search filter relative_path_does_contain relative_path_does_not_contain sort switch_layout quit Visit the Default Key Bindings to see what each mode does.","breadcrumbs":"Configuration » Modes » builtin","id":"47","title":"builtin"},"48":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.custom API. It allows the users to define custom modes. Example: xplr.config.modes.custom.example = { name = \"example\", key_bindings = { on_key = { enter = { help = \"default mode\", messages = { \"PopMode\", { SwitchModeBuiltin = \"default\" } } } } }\n} xplr.config.general.initial_mode = \"example\" -- when you load xplr, you should be in the \"example\" mode,\n-- pressing \"enter\" should take you to the \"default\" mode.","breadcrumbs":"Configuration » Modes » custom","id":"48","title":"custom"},"49":{"body":"A mode contains the following information: name help extra_help key_bindings","breadcrumbs":"Configuration » Modes » Mode","id":"49","title":"Mode"},"5":{"body":"Embedded LuaJIT for portability and extensibility. Switchable recover mode: Saves you from doing unwanted things when in a hurry. Sane (vim-like) defaults: Use h, j, k, l or arrow keys for basic navigation. Go to top using g g, and bottom using G. Travel history using ctrl-o and ctrl-i. Go to home directory using ~. Enter search mode with / or ctrl-f. Go to absolute index (e.g. 4) using 4 enter or : 4 enter. Go to relative index (e.g. 4 down) using 4 down or : 4 down. Follow symlink using g f. Open in GUI using g x. Spawn terminal using : !. Toggle selection using v or space. Toggle select all using V or ctrl-a. Clear selections using ctrl-u. Separate keys for navigation: navigation keys are separated from the action keys (e.g. file opening action) to avoid mistakenly performing unwanted actions while navigating. Always visible panels to save you brain cycles: Selection list. Help menu. Input & logs. Filter and sort pipeline. Batch creation: Create multiple files and directories without repeating keys. Batch sort & filter: Apply sorters and filters in without repeating keys. Custom file properties: Display custom file properties with custom colors in the table using Lua functions. Input buffer: Read user input using the built-in input buffer with customizable behavior. Switchable layouts: Switch layouts dynamically without leaving xplr. Saved locations: Never lose context when traveling back and forth directories. Auto refresh state: Auto refresh app state when the $PWD changes. Manually refresh UI when other apps mess it up. FIFO-based previews: Easy to manage FIFO file that can be used to integrate with previewers . Different quit options: Quit with success without any output (q). Quit with success and the result printed on stdout (enter). Quit with success and the present working directory printed on stdout (: q p). Quit with success and the path under focus printed on stdout (: q f). Quit with success and the selection printed on stdout (: q s). Quit with failure (ctrl-c).","breadcrumbs":"Introduction » Other features","id":"5","title":"Other features"},"50":{"body":"Type: string This is the name of the mode visible in the help menu.","breadcrumbs":"Configuration » Modes » name","id":"50","title":"name"},"51":{"body":"Type: nullable string If specified, the help menu will display this instead of the auto generated mappings.","breadcrumbs":"Configuration » Modes » help","id":"51","title":"help"},"52":{"body":"Type: nullable string If specified, the help menu will display this along-side the auto generated help menu.","breadcrumbs":"Configuration » Modes » extra_help","id":"52","title":"extra_help"},"53":{"body":"Type: Key Bindings The key bindings available in that mode.","breadcrumbs":"Configuration » Modes » key_bindings","id":"53","title":"key_bindings"},"54":{"body":"Key bindings define how each keyboard input will be handled in a specific mode. See the default key bindings for example. Key bindings contains the following information: on_key on_alphabet on_number on_special_character default","breadcrumbs":"Configuration » Modes » Key Bindings","id":"54","title":"Key Bindings"},"55":{"body":"Type: mapping of Key to nullable Action Defines what to do when a specific key is pressed.","breadcrumbs":"Configuration » Modes » on_key","id":"55","title":"on_key"},"56":{"body":"Type: nullable Action An action to perform if the keyboard input is an alphabet and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_alphabet","id":"56","title":"on_alphabet"},"57":{"body":"Type: nullable Action An action to perform if the keyboard input is a number and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_number","id":"57","title":"on_number"},"58":{"body":"Type: nullable Action An action to perform if the keyboard input is a special character and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_special_character","id":"58","title":"on_special_character"},"59":{"body":"Type: nullable Action Default action to perform in case of a keyboard input not mapped via any of the on_key , on_alphabet , on_number or on_special_character field.","breadcrumbs":"Configuration » Modes » default","id":"59","title":"default"},"6":{"body":"Nice to you have here! Let's quickly start our xplr journey with the following steps: Install Post Install","breadcrumbs":"Quickstart » Quickstart","id":"6","title":"Quickstart"},"60":{"body":"A key can be one of the following: 0, 1, ... 9 a, b, ... z A, B, ... Z f1, f2, ... f12 ctrl-a, ctrl-b, ... ctrl-z alt-a, alt-b, ... alt-z backspace left right up down home end page-up page-down back-tab delete insert enter tab esc And finally, the special characters - including space (\" \").","breadcrumbs":"Configuration » Modes » Key","id":"60","title":"Key"},"61":{"body":"An action contains the following information: help messages","breadcrumbs":"Configuration » Modes » Action","id":"61","title":"Action"},"62":{"body":"Type: nullable string Description of what it does. If unspecified, it will be excluded from the help menu.","breadcrumbs":"Configuration » Modes » help","id":"62","title":"help"},"63":{"body":"Type: A list of Message to send. The list of messages to send when a key is pressed.","breadcrumbs":"Configuration » Modes » messages","id":"63","title":"messages"},"64":{"body":"Assuming xplr is installed and setup , let's add our own mode to integrate xplr with fzf . We'll call it fzxplr mode. First, let's add a custom mode called fzxplr, and map the key F to an action that will call fzf to search and focus on a file or enter into a directory. xplr.config.modes.custom.fzxplr = { name = \"fzxplr\", key_bindings = { on_key = { F = { help = \"search\", messages = { { BashExec = [===[ PTH=$(cat \"${XPLR_PIPE_DIRECTORY_NODES_OUT:?}\" | awk -F/ '{print $NF}' | fzf) if [ -d \"$PTH\" ]; then echo ChangeDirectory: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" else echo FocusPath: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" fi ]===] }, \"PopMode\", }, }, }, default = { messages = { \"PopMode\", }, }, },\n} As you can see, the key F in mode fzxplr (the name can be anything) executes a script in bash. BashExec, PopMode, SwitchModeBuiltin, ChangeDirectory and FocusPath are messages , $XPLR_PIPE_MSG_IN, $XPLR_PIPE_DIRECTORY_NODES_OUT are environment variables exported by xplr before executing the command. They contain the path to the input and output pipes that allows external tools to interact with xplr. Now that we have our new mode ready, let's add an entry point to this mode via the default mode. xplr.config.modes.builtin.default.key_bindings.on_key[\"F\"] = { help = \"fzf mode\", messages = { { SwitchModeCustom = \"fzxplr\" }, },\n} Now let's try out the new xplr-fzf integration. xplr-fzf.gif Visit Awesome Plugins for more integration options.","breadcrumbs":"Configuration » Modes » Tutorial: Adding a New Mode","id":"64","title":"Tutorial: Adding a New Mode"},"65":{"body":"You can think of xplr as a server. Just like web servers listen to HTTP requests, xplr listens to messages . You can send these messages to an xplr session in the following ways: Via key bindings Via Lua function calls Via shell command using the input pipe","breadcrumbs":"Configuration » Message » Message","id":"65","title":"Message"},"66":{"body":"To send messages using the key bindings or Lua function calls , messages are represented in Lua syntax. For example: \"Quit\" { FocusPath = \"/path/to/file\" } { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } } However, to send messages using the input pipe , they need to be represented using YAML (or JSON ) syntax. For example: Quit FocusPath: \"/path/to/file\" Call: { command: bash, args: [\"-c\", \"read -p test\"] }","breadcrumbs":"Configuration » Message » Format","id":"66","title":"Format"},"67":{"body":"","breadcrumbs":"Configuration » Message » Full List of Messages","id":"67","title":"Full List of Messages"},"68":{"body":"YAML: ExplorePwd Explore the present working directory and register the filtered nodes. This operation is expensive. So, try to avoid using it too often.","breadcrumbs":"Configuration » Message » \"ExplorePwd\"","id":"68","title":"\"ExplorePwd\""},"69":{"body":"YAML: ExplorePwdAsync Explore the present working directory and register the filtered nodes asynchronously. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExplorePwdAsync\"","id":"69","title":"\"ExplorePwdAsync\""},"7":{"body":"You can install xplr using one of the following ways. Each has their own advantages and limitations. For example, the Direct Download , From crates.io , and Build From Source methods allow the users to install the latest possible version of xplr, but they have one common drawback - the user will need to keep an eye on the releases, and manually upgrade xplr when a new version is available. One way to keep an eye on the releases is to watch the repository .","breadcrumbs":"Quickstart » Install » Install","id":"7","title":"Install"},"70":{"body":"YAML: ExploreParentsAsync Explore the present working directory along with its parents and register the filtered nodes. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore just the $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExploreParentsAsync\"","id":"70","title":"\"ExploreParentsAsync\""},"71":{"body":"YAML: Refresh Refresh the UI. But it will not re-explore the directory if the working directory is the same. If there is some change in the working directory and you want to re-explore it, use the Explore message instead. Also, it will not clear the screen. Use ClearScreen for that.","breadcrumbs":"Configuration » Message » \"Refresh\"","id":"71","title":"\"Refresh\""},"72":{"body":"YAML: ClearScreen Clears the screen.","breadcrumbs":"Configuration » Message » \"ClearScreen\"","id":"72","title":"\"ClearScreen\""},"73":{"body":"YAML: FocusNext Focus next node.","breadcrumbs":"Configuration » Message » \"FocusNext\"","id":"73","title":"\"FocusNext\""},"74":{"body":"YAML: FocusNextByRelativeIndex: int Focus on the nth node relative to the current focus where n is a given value. YAML Example: FocusNextByRelativeIndex: 2 Lua Example: { FocusNextByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusNextByRelativeIndex = int }","id":"74","title":"{ FocusNextByRelativeIndex = int }"},"75":{"body":"YAML: FocusNextByRelativeIndexFromInput Focus on the nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusNextByRelativeIndexFromInput\"","id":"75","title":"\"FocusNextByRelativeIndexFromInput\""},"76":{"body":"YAML: FocusPrevious Focus on the previous item.","breadcrumbs":"Configuration » Message » \"FocusPrevious\"","id":"76","title":"\"FocusPrevious\""},"77":{"body":"YAML: FocusPreviousByRelativeIndex: int Focus on the -nth node relative to the current focus where n is a given value. YAML Example: FocusPreviousByRelativeIndex: 2 Lua Example: { FocusPreviousByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusPreviousByRelativeIndex = int }","id":"77","title":"{ FocusPreviousByRelativeIndex = int }"},"78":{"body":"YAML: FocusPreviousByRelativeIndexFromInput Focus on the -nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusPreviousByRelativeIndexFromInput\"","id":"78","title":"\"FocusPreviousByRelativeIndexFromInput\""},"79":{"body":"YAML: FocusFirst Focus on the first node.","breadcrumbs":"Configuration » Message » \"FocusFirst\"","id":"79","title":"\"FocusFirst\""},"8":{"body":"xplr can be installed from one of the following community maintained repositories: packaging status","breadcrumbs":"Quickstart » Install » Community Maintained Repositories","id":"8","title":"Community Maintained Repositories"},"80":{"body":"YAML: FocusLast Focus on the last node.","breadcrumbs":"Configuration » Message » \"FocusLast\"","id":"80","title":"\"FocusLast\""},"81":{"body":"YAML: FocusPath: string Focus on the given path. YAML Example: FocusPath: /path/to/file Lua Example: { FocusPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { FocusPath = \"string\" }","id":"81","title":"{ FocusPath = \"string\" }"},"82":{"body":"YAML: FocusPathFromInput Focus on the path read from input buffer.","breadcrumbs":"Configuration » Message » \"FocusPathFromInput\"","id":"82","title":"\"FocusPathFromInput\""},"83":{"body":"YAML: FocusByIndex: int Focus on the absolute nth node where n is a given value. YAML Example: FocusByIndex: 2 Lua Example: { FocusByIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusByIndex = int }","id":"83","title":"{ FocusByIndex = int }"},"84":{"body":"YAML: FocusByIndexFromInput Focus on the absolute nth node where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusByIndexFromInput\"","id":"84","title":"\"FocusByIndexFromInput\""},"85":{"body":"YAML: FocusByFileName: string Focus on the file by name from the present working directory. YAML Example: FocusByFileName: filename.ext Lua Example: { FocusByFileName = \"filename.ext\" }","breadcrumbs":"Configuration » Message » { FocusByFileName = \"string\" }","id":"85","title":"{ FocusByFileName = \"string\" }"},"86":{"body":"YAML: ChangeDirectory: string Change the present working directory ($PWD) YAML Example: ChangeDirectory: /path/to/directory Lua Example: { ChangeDirectory = \"/path/to/directory\" }","breadcrumbs":"Configuration » Message » { ChangeDirectory = \"string\" }","id":"86","title":"{ ChangeDirectory = \"string\" }"},"87":{"body":"YAML: Enter Enter into the currently focused path if it's a directory.","breadcrumbs":"Configuration » Message » \"Enter\"","id":"87","title":"\"Enter\""},"88":{"body":"YAML: Back Go back to the parent directory.","breadcrumbs":"Configuration » Message » \"Back\"","id":"88","title":"\"Back\""},"89":{"body":"YAML: LastVisitedPath Go to the last path visited.","breadcrumbs":"Configuration » Message » \"LastVisitedPath\"","id":"89","title":"\"LastVisitedPath\""},"9":{"body":"Official Community Repo sudo pacman -S xplr AUR Binary version: paru -S xplr-bin Git version: paru -S xplr-git","breadcrumbs":"Quickstart » Install » Arch Linux","id":"9","title":"Arch Linux"},"90":{"body":"YAML: NextVisitedPath Go to the next path visited.","breadcrumbs":"Configuration » Message » \"NextVisitedPath\"","id":"90","title":"\"NextVisitedPath\""},"91":{"body":"YAML: FollowSymlink Follow the symlink under focus to its actual location.","breadcrumbs":"Configuration » Message » \"FollowSymlink\"","id":"91","title":"\"FollowSymlink\""},"92":{"body":"YAML: BufferInput(String) Append/buffer the given string into the input buffer. YAML Example: BufferInput: foo Lua Example: { BufferInput = \"foo\" }","breadcrumbs":"Configuration » Message » { BufferInput = \"string\" }","id":"92","title":"{ BufferInput = \"string\" }"},"93":{"body":"YAML: BufferInputFromKey Append/buffer the characted read from a keyboard input into the input buffer.","breadcrumbs":"Configuration » Message » \"BufferInputFromKey\"","id":"93","title":"\"BufferInputFromKey\""},"94":{"body":"YAML: SetInputBuffer: string Set/rewrite the input buffer with the given string. When the input buffer is not-null (even if empty string) it will show in the UI. YAML Example: SetInputBuffer: foo Lua Example: { SetInputBuffer = \"foo\" }","breadcrumbs":"Configuration » Message » { SetInputBuffer = \"string\" }","id":"94","title":"{ SetInputBuffer = \"string\" }"},"95":{"body":"YAML: RemoveInputBufferLastCharacter Remove input buffer's last character.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastCharacter\"","id":"95","title":"\"RemoveInputBufferLastCharacter\""},"96":{"body":"YAML: RemoveInputBufferLastWord Remove input buffer's last word.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastWord\"","id":"96","title":"\"RemoveInputBufferLastWord\""},"97":{"body":"YAML: ResetInputBuffer Reset the input buffer back to null. It will not show in the UI.","breadcrumbs":"Configuration » Message » \"ResetInputBuffer\"","id":"97","title":"\"ResetInputBuffer\""},"98":{"body":"YAML: SwitchMode: string Switch input mode . NOTE: To be specific about which mode to switch to, use SwitchModeBuiltin or SwitchModeCustom instead. YAML Example: SwitchMode: default Lua Example: { SwitchMode = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchMode = \"string\" }","id":"98","title":"{ SwitchMode = \"string\" }"},"99":{"body":"YAML: SwitchModeBuiltin: string Switch to a builtin mode . YAML Example: SwitchModeBuiltin: default Lua Example: { SwitchModeBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchModeBuiltin = \"string\" }","id":"99","title":"{ SwitchModeBuiltin = \"string\" }"}},"length":318,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"314":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"314":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"315":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"315":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"304":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":10,"docs":{"2":{"tf":1.0},"273":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"316":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"317":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"315":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.0},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"304":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"305":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":7,"docs":{"242":{"tf":1.7320508075688772},"272":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":25,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"21":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":5.196152422706632},"41":{"tf":1.0},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"315":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.0},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.23606797749979},"315":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":28,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"306":{"tf":1.0},"317":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"317":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"315":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"304":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"304":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"312":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"315":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"314":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":67,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"315":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"215":{"tf":2.0},"220":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"315":{"tf":1.0}}}},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":2.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":2.449489742783178},"306":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"314":{"tf":2.0},"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"304":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"314":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"305":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":14,"docs":{"107":{"tf":2.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"304":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"315":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"311":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"315":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"305":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"312":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"314":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"315":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"305":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":31,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"313":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.4142135623730951},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.0}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"a":{"df":53,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"315":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"313":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"312":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"241":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"243":{"tf":1.0},"269":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"303":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":26,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":3.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"315":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"315":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":1,"docs":{"303":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":7,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":4.0},"316":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"303":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":78,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}},"e":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"315":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"317":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":1,"docs":{"304":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"314":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":1.7320508075688772},"243":{"tf":1.0},"256":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":12,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":2.23606797749979},"312":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"315":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"2":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"303":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"317":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"316":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.4142135623730951}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"304":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"315":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}},"df":1,"docs":{"304":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"315":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"316":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"315":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.0},"315":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.0},"133":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"315":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"314":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":26,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"304":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"315":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"315":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.0},"315":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.4142135623730951}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":2.449489742783178},"315":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"315":{"tf":2.0},"98":{"tf":2.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"315":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.0},"315":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"315":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"278":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":20,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"312":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"312":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.0},"315":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.0},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":1,"docs":{"117":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"304":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"315":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"311":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"315":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":4,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.0}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"314":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"314":{"tf":1.4142135623730951},"315":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":37,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":3.3166247903554},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"315":{"tf":1.0}}},"7":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"315":{"tf":1.0}}},"5":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"315":{"tf":2.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"314":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"105":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"301":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":3.4641016151377544},"315":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"314":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":3.605551275463989},"317":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"314":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"306":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"317":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.7320508075688772},"301":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":2.23606797749979},"317":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"304":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"314":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"314":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"315":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"313":{"tf":2.0},"315":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"315":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":2.0},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"304":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":28,"docs":{"2":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":2.0},"19":{"tf":1.0},"316":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"317":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"315":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.23606797749979},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.4142135623730951},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"304":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"305":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":36,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":2.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":42,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":5.196152422706632},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":256,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"315":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.23606797749979},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.7320508075688772},"21":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.449489742783178},"315":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":44,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":2.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"306":{"tf":1.0},"317":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"317":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.7320508075688772},"304":{"tf":1.7320508075688772},"315":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"304":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.23606797749979},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"304":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"312":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"315":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":2.0},"189":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"314":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":67,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"315":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"315":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"215":{"tf":2.0},"220":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.7320508075688772},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"315":{"tf":1.0}}}},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.23606797749979},"215":{"tf":2.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":2.449489742783178},"306":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"121":{"tf":3.0},"122":{"tf":3.0},"123":{"tf":3.0},"124":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"290":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"314":{"tf":2.0},"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"304":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"314":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"305":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":14,"docs":{"107":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"304":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":27,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"315":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"311":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"315":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"314":{"tf":2.0},"315":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"305":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"312":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"314":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":2.23606797749979},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"t":{"df":6,"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}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"243":{"tf":1.0},"249":{"tf":1.4142135623730951}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951},"243":{"tf":1.0},"251":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"315":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"305":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":2.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":2.8284271247461903},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"313":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.23606797749979}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.23606797749979},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.23606797749979},"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"a":{"df":53,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"315":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"313":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"312":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":133,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"241":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"315":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"243":{"tf":1.0},"253":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"303":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":2.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":3.3166247903554},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"315":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"315":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":1,"docs":{"303":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":7,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":4.0},"316":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"303":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":84,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.449489742783178},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}},"e":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"315":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"317":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":1,"docs":{"304":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"315":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"314":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":2.0},"243":{"tf":1.0},"256":{"tf":2.0},"270":{"tf":1.7320508075688772}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":12,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"312":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"315":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"2":{"tf":1.0},"292":{"tf":2.449489742783178},"293":{"tf":2.8284271247461903},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"299":{"tf":2.0},"300":{"tf":2.0},"301":{"tf":2.449489742783178},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"317":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"316":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.7320508075688772}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"304":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"315":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":2.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"190":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}},"df":1,"docs":{"304":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"315":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"316":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.4142135623730951},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"315":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.23606797749979},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.23606797749979},"315":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.7320508075688772},"315":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"315":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"314":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"df":26,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":2.0},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"304":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"315":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":2.0},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":2.0},"132":{"tf":3.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"315":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.23606797749979},"315":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":16,"docs":{"222":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":2.449489742783178},"315":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"315":{"tf":2.0},"98":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"315":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.23606797749979},"315":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"315":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.0},"278":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":20,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.7320508075688772},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"3":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":2.0},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":2.0}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"312":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"302":{"tf":1.0},"305":{"tf":1.7320508075688772},"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"312":{"tf":1.7320508075688772},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.23606797749979},"315":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.23606797749979},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":1,"docs":{"117":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"304":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"315":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"311":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"315":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}},"df":4,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"314":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"314":{"tf":1.4142135623730951},"315":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":37,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":3.3166247903554},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"315":{"tf":1.0}}},"7":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"315":{"tf":1.0}}},"5":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"315":{"tf":2.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"314":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"105":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"301":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":3.4641016151377544},"315":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.7320508075688772},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"314":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":3.605551275463989},"317":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"314":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"306":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"317":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":2.23606797749979},"317":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"304":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"title":{"root":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"246":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"61":{"tf":1.0}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"243":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"273":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"155":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"107":{"tf":1.0},"156":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"257":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"158":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"197":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"216":{"tf":1.0},"284":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"300":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"175":{"tf":1.0},"220":{"tf":1.0},"247":{"tf":1.0},"303":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"217":{"tf":1.0},"283":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"278":{"tf":1.0}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"293":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"250":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"251":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"252":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"181":{"tf":1.0},"219":{"tf":1.0},"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"163":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"295":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"64":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"280":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"244":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"188":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"275":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"242":{"tf":1.0},"243":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"235":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":4,"docs":{"111":{"tf":1.0},"162":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"232":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":30,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"291":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"186":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"243":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["introduction.html#introduction","introduction.html#features","introduction.html#hackable","introduction.html#fast","introduction.html#minimalist","introduction.html#other-features","quickstart.html#quickstart","install.html#install","install.html#community-maintained-repositories","install.html#arch-linux","install.html#void-linux","install.html#nixos","install.html#macos","install.html#freebsd","install.html#netbsd","install.html#direct-download","install.html#from--cratesio","install.html#build-from-source","install.html#android","install.html#termux","post-install.html#post-install","post-install.html#create-the-customizable-config-file","post-install.html#run","configuration.html#configuration","configuration.html#how-config-is-loaded","configuration.html#config","general-config.html#general-config","general-config.html#enable_mouse","general-config.html#show_hidden","general-config.html#read_only","general-config.html#disable_recover_mode","general-config.html#cursorformat","general-config.html#cursorstyle","general-config.html#initial_layout","general-config.html#initial_mode","general-config.html#initial_sorting","general-config.html#tablestyle","general-config.html#tablecol_spacing","general-config.html#tablecol_widths","general-config.html#tableheaderheight","general-config.html#tableheaderstyle","general-config.html#tableheadercols","general-config.html#tablerowheight","general-config.html#tablerowstyle","general-config.html#tablerowcols","general-config.html#tabletree","modes.html#modes","modes.html#builtin","modes.html#custom","modes.html#mode","modes.html#name","modes.html#help","modes.html#extra_help","modes.html#key_bindings","modes.html#key-bindings","modes.html#on_key","modes.html#on_alphabet","modes.html#on_number","modes.html#on_special_character","modes.html#default","modes.html#key","modes.html#action","modes.html#help","modes.html#messages","modes.html#tutorial-adding-a-new-mode","message.html#message","message.html#format","message.html#full-list-of-messages","message.html#explorepwd","message.html#explorepwdasync","message.html#exploreparentsasync","message.html#refresh","message.html#clearscreen","message.html#focusnext","message.html#-focusnextbyrelativeindex--int-","message.html#focusnextbyrelativeindexfrominput","message.html#focusprevious","message.html#-focuspreviousbyrelativeindex--int-","message.html#focuspreviousbyrelativeindexfrominput","message.html#focusfirst","message.html#focuslast","message.html#-focuspath--string-","message.html#focuspathfrominput","message.html#-focusbyindex--int-","message.html#focusbyindexfrominput","message.html#-focusbyfilename--string-","message.html#-changedirectory--string-","message.html#enter","message.html#back","message.html#lastvisitedpath","message.html#nextvisitedpath","message.html#followsymlink","message.html#-bufferinput--string-","message.html#bufferinputfromkey","message.html#-setinputbuffer--string-","message.html#removeinputbufferlastcharacter","message.html#removeinputbufferlastword","message.html#resetinputbuffer","message.html#-switchmode--string-","message.html#-switchmodebuiltin--string-","message.html#-switchmodecustom--string-","message.html#popmode","message.html#-switchlayout--string-","message.html#-switchlayoutbuiltin--string-","message.html#-switchlayoutcustom--string-","message.html#-call--string-","message.html#-callsilently--string-","message.html#-calllua--string-","message.html#-callluasilently--string-","message.html#-bashexec--string-","message.html#-bashexecsilently--string-","message.html#select","message.html#selectall","message.html#-selectpath--string-","message.html#unselect","message.html#unselectall","message.html#-unselectpath--string-","message.html#toggleselection","message.html#toggleselectall","message.html#-toggleselectionbypath--string-","message.html#clearselection","message.html#-addnodefilter---filter---filter--input--string-","message.html#-removenodefilter---filter---filter--input--string-","message.html#-togglenodefilter---filter---filter--input--string-","message.html#-addnodefilterfrominput---filter--","message.html#-removenodefilterfrominput---filter--","message.html#removelastnodefilter","message.html#resetnodefilters","message.html#clearnodefilters","message.html#-addnodesorter---sorter---sorter--reverse--bool--","message.html#-removenodesorter---sorter--","message.html#-reversenodesorter---sorter--","message.html#-togglenodesorter---sorter---sorter--reverse--bool--","message.html#reversenodesorters","message.html#removelastnodesorter","message.html#resetnodesorters","message.html#clearnodesorters","message.html#enablemouse","message.html#disablemouse","message.html#togglemouse","message.html#-startfifo--string-","message.html#stopfifo","message.html#-togglefifo--string-","message.html#-loginfo--string-","message.html#-logsuccess--string-","message.html#-logwarning--string-","message.html#-logerror--string-","message.html#quit","message.html#printpwdandquit","message.html#printfocuspathandquit","message.html#printselectionandquit","message.html#printresultandquit","message.html#printappstateandquit","message.html#-debug--string-","message.html#terminate","message.html#lua-function-calls","message.html#calllua-argument","message.html#version","message.html#config","message.html#pwd","message.html#focused_node","message.html#directory_buffer","message.html#selection","message.html#mode","message.html#layout","message.html#input_buffer","message.html#pid","message.html#session_path","message.html#explorer_config","message.html#history","message.html#last_modes","message.html#node","message.html#parent","message.html#relative_path","message.html#absolute_path","message.html#extension","message.html#is_symlink","message.html#is_broken","message.html#is_dir","message.html#is_file","message.html#is_readonly","message.html#mime_essence","message.html#size","message.html#human_size","message.html#permissions","message.html#canonical","message.html#symlink","message.html#example-using-lua-function-calls","message.html#environment-variables-and-pipes","message.html#environment-variables","message.html#example-using-environment-variables-and-pipes","layouts.html#layouts","layouts.html#builtin","layouts.html#default","layouts.html#no_help","layouts.html#no_selection","layouts.html#no_help_no_selection","layouts.html#custom","layouts.html#layout","layouts.html#nothing","layouts.html#table","layouts.html#inputandlogs","layouts.html#selection","layouts.html#helpmenu","layouts.html#sortandfilter","layouts.html#horizontal","layouts.html#vertical","layouts.html#layout-config","layouts.html#margin","layouts.html#horizontal_margin","layouts.html#vertical_margin","layouts.html#constraints","layouts.html#constraint","layouts.html#splits","layouts.html#example","node_types.html#node-types","node_types.html#directory","node_types.html#file","node_types.html#symlink","node_types.html#mime_essence","node_types.html#extension","node_types.html#special","node_types.html#nodetype-config","node_types.html#meta","style.html#style","style.html#fg","style.html#bg","style.html#add_modifiers","style.html#sub_modifiers","style.html#color","style.html#modifier","style.html#example","sorting.html#sorting","sorting.html#node-sorter-applicable","sorting.html#sorter","sorting.html#reverse","sorting.html#example","filtering.html#filtering","filtering.html#node-filter-applicable","filtering.html#filter","filtering.html#input","filtering.html#example","column-renderer.html#column-renderer","column-renderer.html#table-renderer-argument","column-renderer.html#parent","column-renderer.html#relative_path","column-renderer.html#absolute_path","column-renderer.html#extension","column-renderer.html#is_symlink","column-renderer.html#is_broken","column-renderer.html#is_dir","column-renderer.html#is_file","column-renderer.html#is_readonly","column-renderer.html#mime_essence","column-renderer.html#size","column-renderer.html#human_size","column-renderer.html#permissions","column-renderer.html#canonical","column-renderer.html#symlink","column-renderer.html#index","column-renderer.html#relative_index","column-renderer.html#is_before_focus","column-renderer.html#is_after_focus","column-renderer.html#tree","column-renderer.html#prefix","column-renderer.html#suffix","column-renderer.html#is_selected","column-renderer.html#is_focused","column-renderer.html#total","column-renderer.html#meta","column-renderer.html#permission","column-renderer.html#resolved-node-metadata","column-renderer.html#example-customizing-table-renderer","default-key-bindings.html#default-key-bindings","default-key-bindings.html#default","default-key-bindings.html#recover","default-key-bindings.html#filter","default-key-bindings.html#number","default-key-bindings.html#go-to","default-key-bindings.html#search","default-key-bindings.html#selection-ops","default-key-bindings.html#action-to","default-key-bindings.html#create","default-key-bindings.html#create-file","default-key-bindings.html#create-directory","default-key-bindings.html#rename","default-key-bindings.html#delete","default-key-bindings.html#sort","default-key-bindings.html#filter","default-key-bindings.html#relative-path-does-contain","default-key-bindings.html#relative-path-does-not-contain","default-key-bindings.html#switch-layout","plugin.html#plugin","installing-plugins.html#installing-plugins","writing-plugins.html#writing-plugins","writing-plugins.html#naming","writing-plugins.html#structure","writing-plugins.html#readmemd","writing-plugins.html#srcinitlua","writing-plugins.html#publishing","writing-plugins.html#examples","writing-plugins.html#also-see","awesome-plugins.html#awesome-plugins","awesome-plugins.html#categories","awesome-plugins.html#extension","awesome-plugins.html#integration","awesome-plugins.html#theme","integration.html#integration","awesome-integrations.html#awesome-integrations","awesome-integrations.html#categories","awesome-integrations.html#editor","awesome-integrations.html#shell","awesome-integrations.html#security-tools","todo.html#todo","alternatives.html#alternatives","upgrade-guide.html#upgrade-guide","upgrade-guide.html#instructions","community.html#community","contribute.html#backers"],"index":{"documentStore":{"docInfo":{"0":{"body":64,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":3,"breadcrumbs":4,"title":2},"100":{"body":14,"breadcrumbs":4,"title":2},"101":{"body":7,"breadcrumbs":3,"title":1},"102":{"body":21,"breadcrumbs":4,"title":2},"103":{"body":14,"breadcrumbs":4,"title":2},"104":{"body":14,"breadcrumbs":4,"title":2},"105":{"body":43,"breadcrumbs":4,"title":2},"106":{"body":28,"breadcrumbs":4,"title":2},"107":{"body":28,"breadcrumbs":4,"title":2},"108":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":27,"breadcrumbs":4,"title":2},"11":{"body":7,"breadcrumbs":3,"title":1},"110":{"body":23,"breadcrumbs":4,"title":2},"111":{"body":5,"breadcrumbs":3,"title":1},"112":{"body":5,"breadcrumbs":3,"title":1},"113":{"body":14,"breadcrumbs":4,"title":2},"114":{"body":5,"breadcrumbs":3,"title":1},"115":{"body":5,"breadcrumbs":3,"title":1},"116":{"body":14,"breadcrumbs":4,"title":2},"117":{"body":6,"breadcrumbs":3,"title":1},"118":{"body":6,"breadcrumbs":3,"title":1},"119":{"body":15,"breadcrumbs":4,"title":2},"12":{"body":20,"breadcrumbs":3,"title":1},"120":{"body":4,"breadcrumbs":3,"title":1},"121":{"body":26,"breadcrumbs":7,"title":5},"122":{"body":23,"breadcrumbs":7,"title":5},"123":{"body":24,"breadcrumbs":7,"title":5},"124":{"body":17,"breadcrumbs":4,"title":2},"125":{"body":17,"breadcrumbs":4,"title":2},"126":{"body":6,"breadcrumbs":3,"title":1},"127":{"body":8,"breadcrumbs":3,"title":1},"128":{"body":5,"breadcrumbs":3,"title":1},"129":{"body":26,"breadcrumbs":7,"title":5},"13":{"body":9,"breadcrumbs":3,"title":1},"130":{"body":14,"breadcrumbs":4,"title":2},"131":{"body":14,"breadcrumbs":4,"title":2},"132":{"body":24,"breadcrumbs":7,"title":5},"133":{"body":5,"breadcrumbs":3,"title":1},"134":{"body":6,"breadcrumbs":3,"title":1},"135":{"body":8,"breadcrumbs":3,"title":1},"136":{"body":5,"breadcrumbs":3,"title":1},"137":{"body":4,"breadcrumbs":3,"title":1},"138":{"body":4,"breadcrumbs":3,"title":1},"139":{"body":4,"breadcrumbs":3,"title":1},"14":{"body":8,"breadcrumbs":3,"title":1},"140":{"body":18,"breadcrumbs":4,"title":2},"141":{"body":7,"breadcrumbs":3,"title":1},"142":{"body":14,"breadcrumbs":4,"title":2},"143":{"body":16,"breadcrumbs":4,"title":2},"144":{"body":18,"breadcrumbs":4,"title":2},"145":{"body":16,"breadcrumbs":4,"title":2},"146":{"body":16,"breadcrumbs":4,"title":2},"147":{"body":6,"breadcrumbs":3,"title":1},"148":{"body":5,"breadcrumbs":3,"title":1},"149":{"body":12,"breadcrumbs":3,"title":1},"15":{"body":34,"breadcrumbs":4,"title":2},"150":{"body":9,"breadcrumbs":3,"title":1},"151":{"body":11,"breadcrumbs":3,"title":1},"152":{"body":13,"breadcrumbs":3,"title":1},"153":{"body":19,"breadcrumbs":4,"title":2},"154":{"body":8,"breadcrumbs":3,"title":1},"155":{"body":31,"breadcrumbs":5,"title":3},"156":{"body":27,"breadcrumbs":4,"title":2},"157":{"body":7,"breadcrumbs":3,"title":1},"158":{"body":2,"breadcrumbs":3,"title":1},"159":{"body":5,"breadcrumbs":3,"title":1},"16":{"body":12,"breadcrumbs":3,"title":1},"160":{"body":6,"breadcrumbs":3,"title":1},"161":{"body":1,"breadcrumbs":3,"title":1},"162":{"body":7,"breadcrumbs":3,"title":1},"163":{"body":4,"breadcrumbs":3,"title":1},"164":{"body":4,"breadcrumbs":3,"title":1},"165":{"body":5,"breadcrumbs":3,"title":1},"166":{"body":5,"breadcrumbs":3,"title":1},"167":{"body":4,"breadcrumbs":3,"title":1},"168":{"body":1,"breadcrumbs":3,"title":1},"169":{"body":1,"breadcrumbs":3,"title":1},"17":{"body":28,"breadcrumbs":4,"title":2},"170":{"body":6,"breadcrumbs":3,"title":1},"171":{"body":19,"breadcrumbs":3,"title":1},"172":{"body":5,"breadcrumbs":3,"title":1},"173":{"body":9,"breadcrumbs":3,"title":1},"174":{"body":8,"breadcrumbs":3,"title":1},"175":{"body":4,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":6,"breadcrumbs":3,"title":1},"178":{"body":5,"breadcrumbs":3,"title":1},"179":{"body":5,"breadcrumbs":3,"title":1},"18":{"body":0,"breadcrumbs":3,"title":1},"180":{"body":5,"breadcrumbs":3,"title":1},"181":{"body":9,"breadcrumbs":3,"title":1},"182":{"body":10,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":5,"breadcrumbs":3,"title":1},"185":{"body":19,"breadcrumbs":3,"title":1},"186":{"body":20,"breadcrumbs":3,"title":1},"187":{"body":48,"breadcrumbs":7,"title":5},"188":{"body":44,"breadcrumbs":5,"title":3},"189":{"body":131,"breadcrumbs":4,"title":2},"19":{"body":51,"breadcrumbs":3,"title":1},"190":{"body":35,"breadcrumbs":7,"title":5},"191":{"body":30,"breadcrumbs":3,"title":1},"192":{"body":17,"breadcrumbs":3,"title":1},"193":{"body":7,"breadcrumbs":3,"title":1},"194":{"body":6,"breadcrumbs":3,"title":1},"195":{"body":6,"breadcrumbs":3,"title":1},"196":{"body":9,"breadcrumbs":3,"title":1},"197":{"body":22,"breadcrumbs":3,"title":1},"198":{"body":21,"breadcrumbs":3,"title":1},"199":{"body":4,"breadcrumbs":3,"title":1},"2":{"body":24,"breadcrumbs":2,"title":1},"20":{"body":8,"breadcrumbs":5,"title":2},"200":{"body":8,"breadcrumbs":3,"title":1},"201":{"body":7,"breadcrumbs":3,"title":1},"202":{"body":6,"breadcrumbs":3,"title":1},"203":{"body":10,"breadcrumbs":3,"title":1},"204":{"body":12,"breadcrumbs":3,"title":1},"205":{"body":12,"breadcrumbs":3,"title":1},"206":{"body":12,"breadcrumbs":3,"title":1},"207":{"body":9,"breadcrumbs":4,"title":2},"208":{"body":6,"breadcrumbs":3,"title":1},"209":{"body":9,"breadcrumbs":3,"title":1},"21":{"body":59,"breadcrumbs":7,"title":4},"210":{"body":9,"breadcrumbs":3,"title":1},"211":{"body":7,"breadcrumbs":3,"title":1},"212":{"body":42,"breadcrumbs":3,"title":1},"213":{"body":9,"breadcrumbs":3,"title":1},"214":{"body":18,"breadcrumbs":3,"title":1},"215":{"body":50,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":4,"title":1},"217":{"body":16,"breadcrumbs":4,"title":1},"218":{"body":12,"breadcrumbs":4,"title":1},"219":{"body":43,"breadcrumbs":4,"title":1},"22":{"body":1,"breadcrumbs":4,"title":1},"220":{"body":19,"breadcrumbs":4,"title":1},"221":{"body":20,"breadcrumbs":4,"title":1},"222":{"body":8,"breadcrumbs":5,"title":2},"223":{"body":25,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":3,"title":1},"225":{"body":5,"breadcrumbs":3,"title":1},"226":{"body":5,"breadcrumbs":3,"title":1},"227":{"body":6,"breadcrumbs":3,"title":1},"228":{"body":6,"breadcrumbs":3,"title":1},"229":{"body":26,"breadcrumbs":3,"title":1},"23":{"body":47,"breadcrumbs":2,"title":1},"230":{"body":12,"breadcrumbs":3,"title":1},"231":{"body":12,"breadcrumbs":3,"title":1},"232":{"body":52,"breadcrumbs":3,"title":1},"233":{"body":5,"breadcrumbs":5,"title":3},"234":{"body":32,"breadcrumbs":3,"title":1},"235":{"body":5,"breadcrumbs":3,"title":1},"236":{"body":17,"breadcrumbs":3,"title":1},"237":{"body":51,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":5,"title":3},"239":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":22,"breadcrumbs":3,"title":2},"240":{"body":4,"breadcrumbs":3,"title":1},"241":{"body":12,"breadcrumbs":3,"title":1},"242":{"body":36,"breadcrumbs":5,"title":2},"243":{"body":31,"breadcrumbs":6,"title":3},"244":{"body":5,"breadcrumbs":4,"title":1},"245":{"body":9,"breadcrumbs":4,"title":1},"246":{"body":8,"breadcrumbs":4,"title":1},"247":{"body":4,"breadcrumbs":4,"title":1},"248":{"body":5,"breadcrumbs":4,"title":1},"249":{"body":6,"breadcrumbs":4,"title":1},"25":{"body":13,"breadcrumbs":2,"title":1},"250":{"body":5,"breadcrumbs":4,"title":1},"251":{"body":5,"breadcrumbs":4,"title":1},"252":{"body":5,"breadcrumbs":4,"title":1},"253":{"body":9,"breadcrumbs":4,"title":1},"254":{"body":10,"breadcrumbs":4,"title":1},"255":{"body":6,"breadcrumbs":4,"title":1},"256":{"body":5,"breadcrumbs":4,"title":1},"257":{"body":19,"breadcrumbs":4,"title":1},"258":{"body":20,"breadcrumbs":4,"title":1},"259":{"body":6,"breadcrumbs":4,"title":1},"26":{"body":8,"breadcrumbs":5,"title":2},"260":{"body":9,"breadcrumbs":4,"title":1},"261":{"body":7,"breadcrumbs":4,"title":1},"262":{"body":6,"breadcrumbs":4,"title":1},"263":{"body":7,"breadcrumbs":4,"title":1},"264":{"body":5,"breadcrumbs":4,"title":1},"265":{"body":5,"breadcrumbs":4,"title":1},"266":{"body":5,"breadcrumbs":4,"title":1},"267":{"body":6,"breadcrumbs":4,"title":1},"268":{"body":5,"breadcrumbs":4,"title":1},"269":{"body":8,"breadcrumbs":4,"title":1},"27":{"body":8,"breadcrumbs":4,"title":1},"270":{"body":21,"breadcrumbs":4,"title":1},"271":{"body":11,"breadcrumbs":6,"title":3},"272":{"body":23,"breadcrumbs":7,"title":4},"273":{"body":25,"breadcrumbs":6,"title":3},"274":{"body":79,"breadcrumbs":4,"title":1},"275":{"body":8,"breadcrumbs":4,"title":1},"276":{"body":27,"breadcrumbs":4,"title":1},"277":{"body":32,"breadcrumbs":4,"title":1},"278":{"body":16,"breadcrumbs":4,"title":1},"279":{"body":37,"breadcrumbs":4,"title":1},"28":{"body":7,"breadcrumbs":4,"title":1},"280":{"body":17,"breadcrumbs":5,"title":2},"281":{"body":29,"breadcrumbs":4,"title":1},"282":{"body":14,"breadcrumbs":4,"title":1},"283":{"body":24,"breadcrumbs":5,"title":2},"284":{"body":24,"breadcrumbs":5,"title":2},"285":{"body":23,"breadcrumbs":4,"title":1},"286":{"body":13,"breadcrumbs":4,"title":1},"287":{"body":58,"breadcrumbs":4,"title":1},"288":{"body":27,"breadcrumbs":4,"title":1},"289":{"body":24,"breadcrumbs":6,"title":3},"29":{"body":16,"breadcrumbs":4,"title":1},"290":{"body":24,"breadcrumbs":6,"title":3},"291":{"body":19,"breadcrumbs":5,"title":2},"292":{"body":18,"breadcrumbs":2,"title":1},"293":{"body":44,"breadcrumbs":5,"title":2},"294":{"body":11,"breadcrumbs":5,"title":2},"295":{"body":14,"breadcrumbs":4,"title":1},"296":{"body":12,"breadcrumbs":4,"title":1},"297":{"body":4,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":4,"title":1},"299":{"body":23,"breadcrumbs":4,"title":1},"3":{"body":59,"breadcrumbs":2,"title":1},"30":{"body":19,"breadcrumbs":4,"title":1},"300":{"body":6,"breadcrumbs":4,"title":1},"301":{"body":18,"breadcrumbs":4,"title":1},"302":{"body":16,"breadcrumbs":5,"title":2},"303":{"body":3,"breadcrumbs":4,"title":1},"304":{"body":22,"breadcrumbs":4,"title":1},"305":{"body":84,"breadcrumbs":4,"title":1},"306":{"body":20,"breadcrumbs":4,"title":1},"307":{"body":14,"breadcrumbs":2,"title":1},"308":{"body":14,"breadcrumbs":5,"title":2},"309":{"body":4,"breadcrumbs":4,"title":1},"31":{"body":10,"breadcrumbs":4,"title":1},"310":{"body":3,"breadcrumbs":4,"title":1},"311":{"body":1,"breadcrumbs":4,"title":1},"312":{"body":2,"breadcrumbs":5,"title":2},"313":{"body":81,"breadcrumbs":2,"title":1},"314":{"body":25,"breadcrumbs":2,"title":1},"315":{"body":142,"breadcrumbs":4,"title":2},"316":{"body":817,"breadcrumbs":3,"title":1},"317":{"body":40,"breadcrumbs":2,"title":1},"318":{"body":69,"breadcrumbs":2,"title":1},"32":{"body":4,"breadcrumbs":4,"title":1},"33":{"body":8,"breadcrumbs":4,"title":1},"34":{"body":8,"breadcrumbs":4,"title":1},"35":{"body":12,"breadcrumbs":4,"title":1},"36":{"body":5,"breadcrumbs":4,"title":1},"37":{"body":7,"breadcrumbs":4,"title":1},"38":{"body":8,"breadcrumbs":4,"title":1},"39":{"body":6,"breadcrumbs":4,"title":1},"4":{"body":42,"breadcrumbs":2,"title":1},"40":{"body":5,"breadcrumbs":4,"title":1},"41":{"body":18,"breadcrumbs":4,"title":1},"42":{"body":7,"breadcrumbs":4,"title":1},"43":{"body":5,"breadcrumbs":4,"title":1},"44":{"body":23,"breadcrumbs":4,"title":1},"45":{"body":62,"breadcrumbs":4,"title":1},"46":{"body":35,"breadcrumbs":3,"title":1},"47":{"body":38,"breadcrumbs":3,"title":1},"48":{"body":37,"breadcrumbs":3,"title":1},"49":{"body":8,"breadcrumbs":3,"title":1},"5":{"body":256,"breadcrumbs":2,"title":1},"50":{"body":7,"breadcrumbs":3,"title":1},"51":{"body":11,"breadcrumbs":3,"title":1},"52":{"body":13,"breadcrumbs":3,"title":1},"53":{"body":7,"breadcrumbs":3,"title":1},"54":{"body":24,"breadcrumbs":4,"title":2},"55":{"body":9,"breadcrumbs":3,"title":1},"56":{"body":12,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":13,"breadcrumbs":3,"title":1},"59":{"body":16,"breadcrumbs":3,"title":1},"6":{"body":12,"breadcrumbs":2,"title":1},"60":{"body":46,"breadcrumbs":3,"title":1},"61":{"body":6,"breadcrumbs":3,"title":1},"62":{"body":8,"breadcrumbs":3,"title":1},"63":{"body":9,"breadcrumbs":3,"title":1},"64":{"body":134,"breadcrumbs":6,"title":4},"65":{"body":30,"breadcrumbs":3,"title":1},"66":{"body":47,"breadcrumbs":3,"title":1},"67":{"body":0,"breadcrumbs":5,"title":3},"68":{"body":14,"breadcrumbs":3,"title":1},"69":{"body":34,"breadcrumbs":3,"title":1},"7":{"body":44,"breadcrumbs":3,"title":1},"70":{"body":35,"breadcrumbs":3,"title":1},"71":{"body":24,"breadcrumbs":3,"title":1},"72":{"body":4,"breadcrumbs":3,"title":1},"73":{"body":5,"breadcrumbs":3,"title":1},"74":{"body":20,"breadcrumbs":4,"title":2},"75":{"body":12,"breadcrumbs":3,"title":1},"76":{"body":5,"breadcrumbs":3,"title":1},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":12,"breadcrumbs":3,"title":1},"79":{"body":5,"breadcrumbs":3,"title":1},"8":{"body":9,"breadcrumbs":5,"title":3},"80":{"body":5,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":4,"title":2},"82":{"body":7,"breadcrumbs":3,"title":1},"83":{"body":18,"breadcrumbs":4,"title":2},"84":{"body":10,"breadcrumbs":3,"title":1},"85":{"body":17,"breadcrumbs":4,"title":2},"86":{"body":16,"breadcrumbs":4,"title":2},"87":{"body":8,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":3,"title":1},"89":{"body":6,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":6,"breadcrumbs":3,"title":1},"91":{"body":8,"breadcrumbs":3,"title":1},"92":{"body":15,"breadcrumbs":4,"title":2},"93":{"body":9,"breadcrumbs":3,"title":1},"94":{"body":24,"breadcrumbs":4,"title":2},"95":{"body":7,"breadcrumbs":3,"title":1},"96":{"body":7,"breadcrumbs":3,"title":1},"97":{"body":9,"breadcrumbs":3,"title":1},"98":{"body":22,"breadcrumbs":4,"title":2},"99":{"body":14,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"xplr is a terminal UI based file explorer that aims to increase our terminal productivity by being a flexible, interactive orchestrator for the ever growing awesome command-line utilities that work with the file-system. To achieve its goal, xplr strives to be a fast, minimal and more importantly, hackable file explorer. xplr is not meant to be a replacement for the standard shell commands or the GUI file managers. Rather, it aims to integrate them all and expose an intuitive, scriptable, keyboard controlled, real-time visual interface, also being an ideal candidate for further integration, enabling the users to achieve insane terminal productivity.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Introduction » Features","id":"1","title":"Features"},"10":{"body":"void-templates by shubham","breadcrumbs":"Quickstart » Install » Void Linux","id":"10","title":"Void Linux"},"100":{"body":"YAML: SwitchModeCustom: string Switch to a custom mode . YAML Example: SwitchModeCustom: my_custom_mode Lua Example: { SwitchModeCustom = \"my_custom_mode\" }","breadcrumbs":"Configuration » Message » { SwitchModeCustom = \"string\" }","id":"100","title":"{ SwitchModeCustom = \"string\" }"},"101":{"body":"YAML: PopMode Pop the last mode from the history and switch to it.","breadcrumbs":"Configuration » Message » \"PopMode\"","id":"101","title":"\"PopMode\""},"102":{"body":"YAML: SwitchLayout: string Switch layout . NOTE: To be specific about which layout to switch to, use SwitchLayoutBuiltin or SwitchLayoutCustom instead. YAML Example: SwitchLayout: default Lua Example: { SwitchLayout = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayout = \"string\" }","id":"102","title":"{ SwitchLayout = \"string\" }"},"103":{"body":"YAML: SwitchLayoutBuiltin: string Switch to a builtin layout . YAML Example: SwitchLayoutBuiltin: default Lua Example: { SwitchLayoutBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutBuiltin = \"string\" }","id":"103","title":"{ SwitchLayoutBuiltin = \"string\" }"},"104":{"body":"YAML: SwitchLayoutCustom: string Switch to a custom layout . YAML Example: SwitchLayoutCustom: my_custom_layout Lua Example: { SwitchLayoutCustom = \"my_custom_layout\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutCustom = \"string\" }","id":"104","title":"{ SwitchLayoutCustom = \"string\" }"},"105":{"body":"YAML: Call: string Call a shell command with the given arguments. Note that the arguments will be shell-escaped. So to read the variables, the -c option of the shell can be used. You may need to pass ExplorePwd depening on the expectation. YAML Example: Call: { command: bash, args: [\"-c\", \"read -p test\"] } Lua Example: { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } }","breadcrumbs":"Configuration » Message » { Call = \"string\" }","id":"105","title":"{ Call = \"string\" }"},"106":{"body":"YAML: CallSilently: string Like Call but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallSilently: { command: tput, args: [\"bell\"] } Lua Example: { CallSilently = { command = \"tput\", args = { \"bell\" } } }","breadcrumbs":"Configuration » Message » { CallSilently = \"string\" }","id":"106","title":"{ CallSilently = \"string\" }"},"107":{"body":"YAML: CallLua: string Call a Lua function. A CallLuaArg object will be passed to the function as argument. The function can optionally return a list of messages for xplr to handle after the executing the function. YAML Example: CallLua: custom.some_custom_funtion Lua Example: { CallLua = \"custom.some_custom_funtion\" }","breadcrumbs":"Configuration » Message » { CallLua = \"string\" }","id":"107","title":"{ CallLua = \"string\" }"},"108":{"body":"YAML: CallLuaSilently: string Like CallLua but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallLuaSilently: custom.some_custom_function Lua Example: { CallLuaSilently = \"custom.some_custom_function\" }","breadcrumbs":"Configuration » Message » { CallLuaSilently = \"string\" }","id":"108","title":"{ CallLuaSilently = \"string\" }"},"109":{"body":"YAML: BashExec: string An alias to Call: {command: bash, args: [\"-c\", \"{string}\"], silent: false} where {string} is the given value. YAML Example: BashExec: \"read -p test\" Lua Example: { BashExec = \"read -p test\" }","breadcrumbs":"Configuration » Message » { BashExec = \"string\" }","id":"109","title":"{ BashExec = \"string\" }"},"11":{"body":"Nixpkgs nix-env -f https://github.com/NixOS/nixpkgs/tarball/master -iA xplr","breadcrumbs":"Quickstart » Install » Nix(OS)","id":"11","title":"Nix(OS)"},"110":{"body":"YAML: BashExecSilently(String) Like BashExec but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: BashExecSilently: \"tput bell\" Lua Example: { BashExecSilently = \"tput bell\" }","breadcrumbs":"Configuration » Message » { BashExecSilently = \"string\" }","id":"110","title":"{ BashExecSilently = \"string\" }"},"111":{"body":"YAML: Select Select the focused node.","breadcrumbs":"Configuration » Message » \"Select\"","id":"111","title":"\"Select\""},"112":{"body":"YAML: SelectAll Select all the visible nodes.","breadcrumbs":"Configuration » Message » \"SelectAll\"","id":"112","title":"\"SelectAll\""},"113":{"body":"YAML: SelectPath: string Select the given path. YAML Example: SelectPath: /path/to/file Lua Example: { SelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { SelectPath = \"string\" }","id":"113","title":"{ SelectPath = \"string\" }"},"114":{"body":"YAML: UnSelect Unselect the focused node.","breadcrumbs":"Configuration » Message » \"UnSelect\"","id":"114","title":"\"UnSelect\""},"115":{"body":"YAML: UnSelectAll Unselect all the visible nodes.","breadcrumbs":"Configuration » Message » \"UnSelectAll\"","id":"115","title":"\"UnSelectAll\""},"116":{"body":"YAML: UnSelectPath: string UnSelect the given path. YAML Example: UnSelectPath: /path/to/file Lua Example: { UnSelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { UnSelectPath = \"string)\" }","id":"116","title":"{ UnSelectPath = \"string)\" }"},"117":{"body":"YAML: ToggleSelection Toggle selection on the focused node.","breadcrumbs":"Configuration » Message » \"ToggleSelection\"","id":"117","title":"\"ToggleSelection\""},"118":{"body":"YAML: ToggleSelectAll Toggle between select all and unselect all.","breadcrumbs":"Configuration » Message » \"ToggleSelectAll\"","id":"118","title":"\"ToggleSelectAll\""},"119":{"body":"YAML: ToggleSelectionByPath: string Toggle selection by file path. YAML Example: ToggleSelectionByPath: /path/to/file Lua Example: { ToggleSelectionByPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { ToggleSelectionByPath = \"string\" }","id":"119","title":"{ ToggleSelectionByPath = \"string\" }"},"12":{"body":"MacPorts sudo port selfupdate\nsudo port install xplr Homebrew Stable branch: brew install xplr HEAD branch: brew install --head xplr","breadcrumbs":"Quickstart » Install » macOS","id":"12","title":"macOS"},"120":{"body":"YAML: ClearSelection Clear the selection.","breadcrumbs":"Configuration » Message » \"ClearSelection\"","id":"120","title":"\"ClearSelection\""},"121":{"body":"YAML: AddNodeFilter: { filter = Filter, input = string } Add a filter to exclude nodes while exploring directories. YAML Example: AddNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { AddNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { AddNodeFilter = { filter = Filter , input = \"string\" }","id":"121","title":"{ AddNodeFilter = { filter = Filter , input = \"string\" }"},"122":{"body":"YAML: RemoveNodeFilter: { filter = Filter, input = string Remove an existing filter . YAML Example: RemoveNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { RemoveNodeFilter: { filter: \"RelativePathDoesStartWith\", input: \"foo\" } }","breadcrumbs":"Configuration » Message » { RemoveNodeFilter = { filter = Filter , input = \"string\" }","id":"122","title":"{ RemoveNodeFilter = { filter = Filter , input = \"string\" }"},"123":{"body":"YAML: ToggleNodeFilter: { filter = Filter, input = string } Remove a filter if it exists, else, add a it. YAML Example: ToggleNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { ToggleNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { ToggleNodeFilter = { filter = Filter , input = \"string\" }","id":"123","title":"{ ToggleNodeFilter = { filter = Filter , input = \"string\" }"},"124":{"body":"YAML: AddNodeFilterFromInput: Filter Add a node filter reading the input from the buffer. YAML Example: AddNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { AddNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { AddNodeFilterFromInput = Filter }","id":"124","title":"{ AddNodeFilterFromInput = Filter }"},"125":{"body":"YAML: RemoveNodeFilterFromInput: Filter Remove a node filter reading the input from the buffer. YAML Example: RemoveNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { RemoveNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { RemoveNodeFilterFromInput = Filter }","id":"125","title":"{ RemoveNodeFilterFromInput = Filter }"},"126":{"body":"YAML: RemoveLastNodeFilter Remove the last node filter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeFilter\"","id":"126","title":"\"RemoveLastNodeFilter\""},"127":{"body":"YAML: ResetNodeFilters Reset the node filters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeFilters\"","id":"127","title":"\"ResetNodeFilters\""},"128":{"body":"YAML: ClearNodeFilters Clear all the node filters .","breadcrumbs":"Configuration » Message » \"ClearNodeFilters\"","id":"128","title":"\"ClearNodeFilters\""},"129":{"body":"YAML: AddNodeSorter: { sorter: Sorter, reverse = bool } Add a sorter to sort nodes while exploring directories. YAML Example: AddNodeSorter: { sorter: ByRelativePath, reverse: false } YAML Example: { AddNodeSorter = { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { AddNodeSorter = { sorter = Sorter , reverse = bool } }","id":"129","title":"{ AddNodeSorter = { sorter = Sorter , reverse = bool } }"},"13":{"body":"ports pkg install xplr Or cd /usr/ports/misc/xplr\nmake install clean","breadcrumbs":"Quickstart » Install » FreeBSD","id":"13","title":"FreeBSD"},"130":{"body":"YAML: RemoveNodeSorter: Sorter Remove an existing sorter . YAML Example: RemoveNodeSorter: ByRelativePath Lua Example: { RemoveNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { RemoveNodeSorter = Sorter }","id":"130","title":"{ RemoveNodeSorter = Sorter }"},"131":{"body":"YAML: ReverseNodeSorter: Sorter Reverse a node sorter . YAML Example: ReverseNodeSorter: ByRelativePath Lua Example: { ReverseNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { ReverseNodeSorter = Sorter }","id":"131","title":"{ ReverseNodeSorter = Sorter }"},"132":{"body":"YAML: ToggleNodeSorter: { sorter: Sorter, reverse = bool } Remove a sorter if it exists, else, add a it. YAML Example: ToggleSorterSorter: {sorter: ByRelativePath, reverse: false } Lua Example: { ToggleSorterSorter: { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { ToggleNodeSorter = { sorter = Sorter , reverse = bool } }","id":"132","title":"{ ToggleNodeSorter = { sorter = Sorter , reverse = bool } }"},"133":{"body":"YAML: ReverseNodeSorters Reverse the node sorters .","breadcrumbs":"Configuration » Message » \"ReverseNodeSorters\"","id":"133","title":"\"ReverseNodeSorters\""},"134":{"body":"YAML: RemoveLastNodeSorter Remove the last node sorter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeSorter\"","id":"134","title":"\"RemoveLastNodeSorter\""},"135":{"body":"YAML: ResetNodeSorters Reset the node sorters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeSorters\"","id":"135","title":"\"ResetNodeSorters\""},"136":{"body":"YAML: ClearNodeSorters Clear all the node sorters .","breadcrumbs":"Configuration » Message » \"ClearNodeSorters\"","id":"136","title":"\"ClearNodeSorters\""},"137":{"body":"YAML: EnableMouse Enable mouse","breadcrumbs":"Configuration » Message » \"EnableMouse\"","id":"137","title":"\"EnableMouse\""},"138":{"body":"YAML: DisableMouse Disable mouse","breadcrumbs":"Configuration » Message » \"DisableMouse\"","id":"138","title":"\"DisableMouse\""},"139":{"body":"YAML: ToggleMouse Toggle mouse","breadcrumbs":"Configuration » Message » \"ToggleMouse\"","id":"139","title":"\"ToggleMouse\""},"14":{"body":"pkgsrc pkgin install xplr Or cd /usr/pkgsrc/sysutils/xplr\nmake install","breadcrumbs":"Quickstart » Install » NetBSD","id":"14","title":"NetBSD"},"140":{"body":"YAML: StartFifo: string Start piping the focused path to the given fifo path YAML Example: StartFifo: /tmp/xplr.fifo Lua Example: { StartFifo = \"/tmp/xplr.fifo }","breadcrumbs":"Configuration » Message » { StartFifo = \"string\" }","id":"140","title":"{ StartFifo = \"string\" }"},"141":{"body":"YAML: StopFifo Close the active fifo and stop piping.","breadcrumbs":"Configuration » Message » \"StopFifo\"","id":"141","title":"\"StopFifo\""},"142":{"body":"YAML: ToggleFifo: string Toggle betwen {Start|Stop}Fifo YAML Example: ToggleFifo: /path/to/fifo Lua Example: { ToggleFifo = \"/path/to/fifo\" }","breadcrumbs":"Configuration » Message » { ToggleFifo = \"string\" }","id":"142","title":"{ ToggleFifo = \"string\" }"},"143":{"body":"YAML: LogInfo: string Log information message. YAML Example: LogInfo: launching satellite Lua Example: { LogInfo = \"launching satellite\" }","breadcrumbs":"Configuration » Message » { LogInfo = \"string\" }","id":"143","title":"{ LogInfo = \"string\" }"},"144":{"body":"YAML: LogSuccess: string Log a success message. YAML Example: LogSuccess: satellite reached destination. Lua Example: { LogSuccess = \"satellite reached destination\" }.","breadcrumbs":"Configuration » Message » { LogSuccess = \"String\" }","id":"144","title":"{ LogSuccess = \"String\" }"},"145":{"body":"YAML: LogWarning: string Log an warning message. YAML Example: LogWarning: satellite is heating Lua Example: { LogWarning = \"satellite is heating\" }","breadcrumbs":"Configuration » Message » { LogWarning = \"string\" }","id":"145","title":"{ LogWarning = \"string\" }"},"146":{"body":"YAML: LogError: string Log an error message. YAML Example: LogError: satellite crashed Lua Example: { LogError = \"satellite crashed\" }","breadcrumbs":"Configuration » Message » { LogError = \"string\" }","id":"146","title":"{ LogError = \"string\" }"},"147":{"body":"YAML: Quit Quit with returncode zero (success).","breadcrumbs":"Configuration » Message » \"Quit\"","id":"147","title":"\"Quit\""},"148":{"body":"YAML: PrintPwdAndQuit Print $PWD and quit.","breadcrumbs":"Configuration » Message » \"PrintPwdAndQuit\"","id":"148","title":"\"PrintPwdAndQuit\""},"149":{"body":"YAML: PrintFocusPathAndQuit Print the path under focus and quit. It can be empty string if there's nothing to focus.","breadcrumbs":"Configuration » Message » \"PrintFocusPathAndQuit\"","id":"149","title":"\"PrintFocusPathAndQuit\""},"15":{"body":"One can directly download the standalone binary from the releases . Currently, the following options are available for direct download: Linux macOS Command-line instructions: platform=\"linux\" # or \"macos\" # Download\nwget https://github.com/sayanarijit/xplr/releases/latest/download/xplr-$platform.tar.gz # Extract\ntar xzvf xplr-$platform.tar.gz # Place in $PATH\nsudo mv xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Direct Download","id":"15","title":"Direct Download"},"150":{"body":"YAML: PrintSelectionAndQuit Print the selected paths and quit. It can be empty is no path is selected.","breadcrumbs":"Configuration » Message » \"PrintSelectionAndQuit\"","id":"150","title":"\"PrintSelectionAndQuit\""},"151":{"body":"YAML: PrintResultAndQuit Print the selected paths if it's not empty, else, print the focused node's path.","breadcrumbs":"Configuration » Message » \"PrintResultAndQuit\"","id":"151","title":"\"PrintResultAndQuit\""},"152":{"body":"YAML: PrintAppStateAndQuit Print the state of application in YAML format. Helpful for debugging or generating the default configuration file.","breadcrumbs":"Configuration » Message » \"PrintAppStateAndQuit\"","id":"152","title":"\"PrintAppStateAndQuit\""},"153":{"body":"YAML: Debug: string Write the application state to a file, without quitting. Also helpful for debugging. YAML Example: Debug: /path/to/file Lua Example: { Debug = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { Debug = \"string\" }","id":"153","title":"{ Debug = \"string\" }"},"154":{"body":"YAML: Terminate Terminate the application with a non-zero return code.","breadcrumbs":"Configuration » Message » \"Terminate\"","id":"154","title":"\"Terminate\""},"155":{"body":"xplr allows users to define lua functions using the xplr.fn.custom Lua API. These functions can be called using messages like CallLua, CallLuaSilently. When called the function receives a special argument that contains some useful information. The function can optionally return a list of messages which will be handled by xplr.","breadcrumbs":"Configuration » Message » Lua Function Calls","id":"155","title":"Lua Function Calls"},"156":{"body":"This is a special argument passed to the lua functions when called using the CallLua, CallLuaSilently messages. It contains the following information: version config pwd focused_node directory_buffer selection mode layout input_buffer pid session_path explorer_config history last_modes","breadcrumbs":"Configuration » Message » CallLua Argument","id":"156","title":"CallLua Argument"},"157":{"body":"Type: string xplr version. Can be used to test compatibility.","breadcrumbs":"Configuration » Message » version","id":"157","title":"version"},"158":{"body":"Type: Config","breadcrumbs":"Configuration » Message » config","id":"158","title":"config"},"159":{"body":"Type: string The present working directory/","breadcrumbs":"Configuration » Message » pwd","id":"159","title":"pwd"},"16":{"body":"Prerequisites: Rust toolchain , gcc make Command-line instructions: cargo install --force xplr","breadcrumbs":"Quickstart » Install » From crates.io","id":"16","title":"From crates.io"},"160":{"body":"Type: nullable Node The node under focus.","breadcrumbs":"Configuration » Message » focused_node","id":"160","title":"focused_node"},"161":{"body":"TODO","breadcrumbs":"Configuration » Message » directory_buffer","id":"161","title":"directory_buffer"},"162":{"body":"Type: list of selected Node s The selected nodes.","breadcrumbs":"Configuration » Message » selection","id":"162","title":"selection"},"163":{"body":"Type: Mode Current mode.","breadcrumbs":"Configuration » Message » mode","id":"163","title":"mode"},"164":{"body":"Type: Layout Current layout.","breadcrumbs":"Configuration » Message » layout","id":"164","title":"layout"},"165":{"body":"Type: nullable string The input buffer.","breadcrumbs":"Configuration » Message » input_buffer","id":"165","title":"input_buffer"},"166":{"body":"Type: integer The xplr session PID.","breadcrumbs":"Configuration » Message » pid","id":"166","title":"pid"},"167":{"body":"Type: string The session path.","breadcrumbs":"Configuration » Message » session_path","id":"167","title":"session_path"},"168":{"body":"TODO","breadcrumbs":"Configuration » Message » explorer_config","id":"168","title":"explorer_config"},"169":{"body":"TODO","breadcrumbs":"Configuration » Message » history","id":"169","title":"history"},"17":{"body":"Prerequisites: git Rust toolchain gcc make Command-line instructions: # Clone the repository\ngit clone https://github.com/sayanarijit/xplr.git\ncd xplr # Build\ncargo build --release --bin xplr # Place in $PATH\nsudo cp target/release/xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Build From Source","id":"17","title":"Build From Source"},"170":{"body":"Type: list of Mode Last modes, not popped yet.","breadcrumbs":"Configuration » Message » last_modes","id":"170","title":"last_modes"},"171":{"body":"A node contains the following fields: parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink","breadcrumbs":"Configuration » Message » Node","id":"171","title":"Node"},"172":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Message » parent","id":"172","title":"parent"},"173":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Message » relative_path","id":"173","title":"relative_path"},"174":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Message » absolute_path","id":"174","title":"absolute_path"},"175":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Message » extension","id":"175","title":"extension"},"176":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Message » is_symlink","id":"176","title":"is_symlink"},"177":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Message » is_broken","id":"177","title":"is_broken"},"178":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Message » is_dir","id":"178","title":"is_dir"},"179":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Message » is_file","id":"179","title":"is_file"},"18":{"body":"","breadcrumbs":"Quickstart » Install » Android","id":"18","title":"Android"},"180":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Message » is_readonly","id":"180","title":"is_readonly"},"181":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Message » mime_essence","id":"181","title":"mime_essence"},"182":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Message » size","id":"182","title":"size"},"183":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Message » human_size","id":"183","title":"human_size"},"184":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Message » permissions","id":"184","title":"permissions"},"185":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Message » canonical","id":"185","title":"canonical"},"186":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Message » symlink","id":"186","title":"symlink"},"187":{"body":"-- Define the function\nxplr.fn.custom.ask_name_and_greet = function(app) print(\"What's your name?\") local name = io.read() local greeting = \"Hello \" .. name .. \"!\" local message = greeting .. \" You are inside \" .. app.pwd return { { LogSuccess = message }, }\nend -- Map the function to a key (space)\nxplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { CallLua = \"custom.ask_name_and_greet\" } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example: Using Lua Function Calls","id":"187","title":"Example: Using Lua Function Calls"},"188":{"body":"Alternative to CallLua, CallLuaSilently messages that call Lua functions, there are Call, CallSilently, BashExec, BashExecSilently messages that call shell commands. However, unlike the Lua functions, these shell commands have to read the useful information and send messages via environment variables and temporary files called \"pipe\"s. These environment variables and files are only available when a command is being executed. Visit the fzf integration tutorial for example.","breadcrumbs":"Configuration » Message » Environment Variables and Pipes","id":"188","title":"Environment Variables and Pipes"},"189":{"body":"To see the environment variables, invoke the shell by typing :! in default mode and run the following command: env | grep ^XPLR_ You will see something like: XPLR_FOCUS_INDEX=0\nXPLR_MODE=action to\nXPLR_PIPE_SELECTION_OUT=/run/user/1000/xplr/session/122278/pipe/selection_out\nXPLR_INPUT_BUFFER=\nXPLR_PIPE_GLOBAL_HELP_MENU_OUT=/run/user/1000/xplr/session/122278/pipe/global_help_menu_out\nXPLR_PID=122278\nXPLR_PIPE_MSG_IN=/run/user/1000/xplr/session/122278/pipe/msg_in\nXPLR_PIPE_LOGS_OUT=/run/user/1000/xplr/session/122278/pipe/logs_out\nXPLR_PIPE_RESULT_OUT=/run/user/1000/xplr/session/122278/pipe/result_out\nXPLR_PIPE_HISTORY_OUT=/run/user/1000/xplr/session/122278/pipe/history_out\nXPLR_FOCUS_PATH=/home/sayanarijit/Documents/GitHub/xplr/docs/en/book\nXPLR_SESSION_PATH=/run/user/1000/xplr/session/122278\nXPLR_APP_VERSION=0.14.3\nXPLR_PIPE_DIRECTORY_NODES_OUT=/run/user/1000/xplr/session/122278/pipe/directory_nodes_out The environment variables starting with XPLR_PIPE_ are the temporary files called \"pipe\"s. Input pipe Current there is only one input pipe. XPLR_PIPE_MSG_IN Output pipes XPLR_PIPE_*_OUT are the output pipes that contain data which cannot be exposed directly via environment variables, like multi-line string. XPLR_PIPE_SELECTION_OUT XPLR_PIPE_GLOBAL_HELP_MENU_OUT XPLR_PIPE_LOGS_OUT XPLR_PIPE_RESULT_OUT XPLR_PIPE_HISTORY_OUT XPLR_PIPE_DIRECTORY_NODES_OUT XPLR_PIPE_MSG_IN Append new-line delimited messages to this pipe in YAML (or JSON ) syntax. These messages will be read and handled by xplr after the command execution. XPLR_PIPE_SELECTION_OUT New-line delimited list of selected paths. XPLR_PIPE_GLOBAL_HELP_MENU_OUT The full help menu. XPLR_PIPE_LOGS_OUT New-line delimited list of logs. XPLR_PIPE_RESULT_OUT New-line delimited result (selected paths if any, else the focused path) XPLR_PIPE_HISTORY_OUT New-line delimited list of last visited paths (similar to jump list in vim). XPLR_PIPE_DIRECTORY_NODES_OUT New-line delimited list of paths, filtered and sorted as displayed in the files table .","breadcrumbs":"Configuration » Message » Environment variables","id":"189","title":"Environment variables"},"19":{"body":"xplr-termuxfd3c398d3cf4bcbc.md.jpg Please note that xplr isn't heavily tested on Termux, hence things might need a little tweaking and fixing for a smooth usage experience. Install build dependencies pkg install rustc cargo make Install xplr cargo install --force xplr Setup storage termux-setup-storage Setup config and runtime dir export XDG_CONFIG_HOME=\"$PWD/storage/.config\"\nexport XDG_RUNTIME_DIR=\"$PWD/storage/run\" mkdir -p \"$XDG_CONFIG_HOME\" \"$XDG_RUNTIME_DIR\" Run ~/.cargo/bin/xplr","breadcrumbs":"Quickstart » Install » Termux","id":"19","title":"Termux"},"190":{"body":"xplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { BashExec = [===[ echo \"What's your name?\" read name greeting=\"Hello $name!\" message=\"$greeting You are inside $PWD\" echo LogSuccess: '\"'$message'\"' >> \"${XPLR_PIPE_MSG_IN:?}\" ]===] } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example: Using Environment Variables and Pipes","id":"190","title":"Example: Using Environment Variables and Pipes"},"191":{"body":"xplr layouts define the structure of the UI, i.e. how many panel we see, placement and size of the panels, how they look etc. This is configuration exposed via the xplr.config.layouts API. It contains the following fields: builtin custom The users can switch between these layouts at run-time.","breadcrumbs":"Configuration » Layouts » Layouts","id":"191","title":"Layouts"},"192":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.builtin API. xplr by default provides the following builtin layouts: default no_help no_selection no_help_no_selection","breadcrumbs":"Configuration » Layouts » builtin","id":"192","title":"builtin"},"193":{"body":"Type: Layout This is the default layout we see when we run xplr.","breadcrumbs":"Configuration » Layouts » default","id":"193","title":"default"},"194":{"body":"Type: Layout This layout hides the help menu.","breadcrumbs":"Configuration » Layouts » no_help","id":"194","title":"no_help"},"195":{"body":"Type: Layout This layout hides the selection panel.","breadcrumbs":"Configuration » Layouts » no_selection","id":"195","title":"no_selection"},"196":{"body":"Type: Layout This layout hides both the help menu and the selection panel.","breadcrumbs":"Configuration » Layouts » no_help_no_selection","id":"196","title":"no_help_no_selection"},"197":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.custom API. It allows the users to define any custom layout. Example: xplr.config.layouts.custom.example = \"Nothing\"\nxplr.config.general.initial_layout = \"example\" -- when you load xplr, you should see a blank screen","breadcrumbs":"Configuration » Layouts » custom","id":"197","title":"custom"},"198":{"body":"A layout can be one of the following: \"Nothing\" \"Table\" \"InputAndLogs\" \"Selection\" \"HelpMenu\" \"SortAndFilter\" { Horizontal = { config = Layout Config , splits = { Layout , ... } } { Vertical = { config = Layout Config , splits = { Layout , ... } }","breadcrumbs":"Configuration » Layouts » Layout","id":"198","title":"Layout"},"199":{"body":"This layout contains a blank panel.","breadcrumbs":"Configuration » Layouts » Nothing","id":"199","title":"Nothing"},"2":{"body":"xplr is built with configurability in mind. So it allows you to perform a vast set of operations and make it behave just the way you want. A few things you can do with the xplr configuration Hack the layout Hack the key bindings Extend with plugins","breadcrumbs":"Introduction » Hackable","id":"2","title":"Hackable"},"20":{"body":"Once installed , use the following steps to setup and run xplr.","breadcrumbs":"Quickstart » Post Install » Post Install","id":"20","title":"Post Install"},"200":{"body":"This layout contains the table displaying the files and directories in the current directory.","breadcrumbs":"Configuration » Layouts » Table","id":"200","title":"Table"},"201":{"body":"This layout contains the panel displaying the input prompt and logs.","breadcrumbs":"Configuration » Layouts » InputAndLogs","id":"201","title":"InputAndLogs"},"202":{"body":"This layout contains the panel displaying the selected paths.","breadcrumbs":"Configuration » Layouts » Selection","id":"202","title":"Selection"},"203":{"body":"This layout contains the panel displaying the help menu for the current mode in real-time.","breadcrumbs":"Configuration » Layouts » HelpMenu","id":"203","title":"HelpMenu"},"204":{"body":"This layout contains the panel displaying the pipeline of sorters and filters applied of the list of paths being displayed.","breadcrumbs":"Configuration » Layouts » SortAndFilter","id":"204","title":"SortAndFilter"},"205":{"body":"This is a special layout that splits the panel into two horizontal parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Horizontal","id":"205","title":"Horizontal"},"206":{"body":"This is a special layout that splits the panel into two vertical parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Vertical","id":"206","title":"Vertical"},"207":{"body":"A layout config contains the following information: margin horizontal_margin vertical_margin constraints","breadcrumbs":"Configuration » Layouts » Layout Config","id":"207","title":"Layout Config"},"208":{"body":"Type: nullable integer The width of the margin in all direction.","breadcrumbs":"Configuration » Layouts » margin","id":"208","title":"margin"},"209":{"body":"Type: nullable integer The width of the horizontal margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » horizontal_Margin","id":"209","title":"horizontal_Margin"},"21":{"body":"mkdir -p ~/.config/xplr version=\"$(xplr | grep ^version: | cut -d' ' -f 2)\" # When the app loads, press `#` echo version = '\"'${version:?}'\"' > ~/.config/xplr/init.lua Then copy from here and remove / comment out what you don't want to customize. Note: You don't generally need to create the config file. You can use the default configuration for basic operations. However, creating the config file is recommended because the project is in its early stage and the defaults might change. Creating the config file will save you from unexpected behavior when you upgrade . Also, the default configuration is meant to be overwritten to suit your workflow.","breadcrumbs":"Quickstart » Post Install » Create the customizable config file","id":"21","title":"Create the customizable config file"},"210":{"body":"Type: nullable integer The width of the vertical margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » vertical_Margin","id":"210","title":"vertical_Margin"},"211":{"body":"Type: nullable list of Constraint The constraints applied on the layout.","breadcrumbs":"Configuration » Layouts » constraints","id":"211","title":"constraints"},"212":{"body":"A constraint can be one of the following: { Percentage = int } { Ratio = { int, int } } { Length = { int } { LengthLessThanScreenHeight = int } { LengthLessThanScreenWidth = int } { LengthLessThanLayoutHeight = int } { LengthLessThanLayoutWidth = int } { Max = int } { MaxLessThanScreenHeight = int } { MaxLessThanScreenWidth = int } { MaxLessThanLayoutHeight = int } { MaxthLessThanLayoutWidth = int } { Min = int } { MinLessThanScreenHeight = int } { MinLessThanScreenWidth = int } { MinLessThanLayoutHeight = int } { MinLessThanLayoutWidth = int } TODO: document each constraint.","breadcrumbs":"Configuration » Layouts » Constraint","id":"212","title":"Constraint"},"213":{"body":"Type: list of Layout The list of child layouts to fit into the parent layout.","breadcrumbs":"Configuration » Layouts » splits","id":"213","title":"splits"},"214":{"body":"layout.png xplr.config.layouts.builtin.default = { Horizontal = { config = { margin = 1, horizontal_margin = 2, vertical_margin = 3, constraints = { { Percentage = 50 }, { Percentage = 50 }, } }, splits = { \"Table\", \"HelpMenu\", } }\n}","breadcrumbs":"Configuration » Layouts » Example","id":"214","title":"Example"},"215":{"body":"This configuration defines how to deal with different kinds of nodes (files, directories, symlinks etc.) in a directory. This can be configured using the xplr.config.node_types Lua API. It contains the following fields: directory file symlink mime_essence extension special One node can fall into multiple categories. For example, a node can have the extension md, and be a file. In that case, the properties from the more specific category i.e. extension will be used. The priority is: special > extension > mime_essence > symlink > file > directory","breadcrumbs":"Configuration » Node Types » Node Types","id":"215","title":"Node Types"},"216":{"body":"Type: NodeType Config Properties related to directories are defined here. Contains the following fields: Example: xplr.config.node_types.directory.meta.icon = \"\"\nxplr.config.node_types.directory.style.add_modifiers = { \"Bold\" }","breadcrumbs":"Configuration » Node Types » directory","id":"216","title":"directory"},"217":{"body":"Type: NodeType Config Properties related to regular files are defined here. Contains the following fields: Example: xplr.config.node_types.file.meta.icon = \"\"\nxplr.config.node_types.file.style.fg = \"White\"","breadcrumbs":"Configuration » Node Types » file","id":"217","title":"file"},"218":{"body":"Type: NodeType Config Properties related to symlink are defined here. Example: xplr.config.node_types.symlink.meta.icon = \"\"\nxplr.config.node_types.symlink.style.add_modifiers = { \"Italic\" }","breadcrumbs":"Configuration » Node Types » symlink","id":"218","title":"symlink"},"219":{"body":"Type: mapping of mime-type and mapping of mime-subtype and NodeType Config Properties related to files with specific mime types are defined here. It is possible to use the wildcard * to match all mime subtypes. It will be overwritten by the more specific sub types that are defined. Example: xplr.config.node_types.mime_essence = { application = { -- application/* [\"*\"] = { meta = { icon = \"a\" } } -- application/pdf pdf = { meta = { icon = \"\" } }, -- application/zip zip = { meta = { icon = \"\"} }, },\n}","breadcrumbs":"Configuration » Node Types » mime_essence","id":"219","title":"mime_essence"},"22":{"body":"xplr","breadcrumbs":"Quickstart » Post Install » Run","id":"22","title":"Run"},"220":{"body":"Type: mapping of extension and NodeType Config Properties related to files with specific extension are defined here. Example: xplr.config.node_types.extension.md = { meta = { icon = \"\" } }\nxplr.config.node_types.extension.rs = { meta = { icon = \"🦀\" } }","breadcrumbs":"Configuration » Node Types » extension","id":"220","title":"extension"},"221":{"body":"Type: mapping of name and NodeType Config Properties related to files and directories with special names are defined here. Example: xplr.config.node_types.special[\"Cargo.toml\"] = { meta = { icon = \"\" } }\nxplr.config.node_types.special[\"Downloads\"] = { meta = { icon = \"\" } }","breadcrumbs":"Configuration » Node Types » special","id":"221","title":"special"},"222":{"body":"A node-type config contains the following fields: meta style","breadcrumbs":"Configuration » Node Types » NodeType Config","id":"222","title":"NodeType Config"},"223":{"body":"Type: mapping of string and string A meta field can contain custom metadata about a node. By default, the \"icon\" metadata is set for the directory , file , and symlink nodes. Example: xplr.config.node_types.file = { meta = { icon = \"f\", foo = \"bar\", }\n}","breadcrumbs":"Configuration » Node Types » meta","id":"223","title":"meta"},"224":{"body":"A style object contains the following information: fg bg add_modifiers sub_modifiers","breadcrumbs":"Configuration » Style » Style","id":"224","title":"Style"},"225":{"body":"Type: nullable Color The foreground color.","breadcrumbs":"Configuration » Style » fg","id":"225","title":"fg"},"226":{"body":"Type: nullable Color The background color.","breadcrumbs":"Configuration » Style » bg","id":"226","title":"bg"},"227":{"body":"Type: nullable list of Modifier Modifiers to add.","breadcrumbs":"Configuration » Style » add_modifiers","id":"227","title":"add_modifiers"},"228":{"body":"Type: nullable list of Modifier Modifiers to remove.","breadcrumbs":"Configuration » Style » sub_modifiers","id":"228","title":"sub_modifiers"},"229":{"body":"Color can be one of the following: \"Reset\" \"Black\" \"Red\" \"Green\" \"Yellow\" \"Blue\" \"Magenta\" \"Cyan\" \"Gray\" \"DarkGray\" \"LightRed\" \"LightGreen\" \"LightYellow\" \"LightBlue\" \"LightMagenta\" \"LightCyan\" \"White\" { Rgb = { int, int, int } } { Indexed = int }","breadcrumbs":"Configuration » Style » Color","id":"229","title":"Color"},"23":{"body":"xplr can be configured using Lua via a special file named init.lua ( example ), which can be placed in ~/.config/xplr/ (user specific) or /etc/xplr/ (global) depending on the use case. When a user specific configuration is available, the global configuration file will be ignored. However, it's also possible to place the file anywhere, with any name and use the command-line argument -c / --config to specify its path explicitely. In that case, both ~/.config/xplr/init.lua and /etc/xplr/init.lua will be ignored.","breadcrumbs":"Configuration » Configuration","id":"23","title":"Configuration"},"230":{"body":"Modifier can be one of the following: \"Bold\" \"Dim\" \"Italic\" \"Underlined\" \"SlowBlink\" \"RapidBlink\" \"Reversed\" \"Hidden\" \"CrossedOut\"","breadcrumbs":"Configuration » Style » Modifier","id":"230","title":"Modifier"},"231":{"body":"xplr.config.general.cursor.style.fg = \"Red\"\nxplr.config.general.cursor.style.bg = { Rgb = { 100, 150, 200 } }\nxplr.config.general.cursor.style.add_modifiers = { \"Bold\", \"Italic\" }\nxplr.config.general.cursor.style.sub_modifiers = { \"Hidden\" }","breadcrumbs":"Configuration » Style » Example","id":"231","title":"Example"},"232":{"body":"xplr supports sorting paths by different properties. The sorting mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: size↑ › [i]rel↓ › [c]dir↑ › [c]file↑ › sym↑ This line means that the nodes visible in the table will be first sorted by it's size, then by case insensitive relative path, then by the canonical (symlink resolved) type of the node, and finally by whether or not the node is a symlink. The arrows denote the order. Each part of this pipeline is called Node Sorter Applicable .","breadcrumbs":"Configuration » Sorting » Sorting","id":"232","title":"Sorting"},"233":{"body":"It contains the following information: sorter reverse","breadcrumbs":"Configuration » Sorting » Node Sorter Applicable","id":"233","title":"Node Sorter Applicable"},"234":{"body":"A sorter can be one of the following: \"ByRelativePath\" \"ByIRelativePath\" \"ByExtension\" \"ByIsDir\" \"ByIsFile\" \"ByIsSymlink\" \"ByIsBroken\" \"ByIsReadonly\" \"ByMimeEssence\" \"BySize\" \"ByCanonicalAbsolutePath\" \"ByICanonicalAbsolutePath\" \"ByCanonicalExtension\" \"ByCanonicalIsDir\" \"ByCanonicalIsFile\" \"ByCanonicalIsReadonly\" \"ByCanonicalMimeEssence\" \"ByCanonicalSize\" \"BySymlinkAbsolutePath\" \"ByISymlinkAbsolutePath\" \"BySymlinkExtension\" \"BySymlinkIsDir\" \"BySymlinkIsFile\" \"BySymlinkIsReadonly\" \"BySymlinkMimeEssence\" \"BySymlinkSize\" TODO: document each","breadcrumbs":"Configuration » Sorting » sorter","id":"234","title":"sorter"},"235":{"body":"Type: boolean It defined the direction of the order.","breadcrumbs":"Configuration » Sorting » reverse","id":"235","title":"reverse"},"236":{"body":"xplr.config.general.initial_sorting = { { sorter = \"ByCanonicalIsDir\", reverse = true }, { sorter = \"ByIRelativePath\", reverse = false },\n} This snippet defines the initial sorting logic to be applied when xplr loads.","breadcrumbs":"Configuration » Sorting » Example","id":"236","title":"Example"},"237":{"body":"xplr supports filtering paths by different properties. The filtering mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: rel!^. › [i]abs=~abc › [i]rel!~xyz This line means that the nodes visible on the table will first be filtered by the condition: relative path does not start with . , then by the condition: absolute path contains abc (case insensitive) , and finally by the condition: relative path does not contain xyz (case insensitive). Each part of this pipeline is called Node Filter Applicable .","breadcrumbs":"Configuration » Filtering » Filtering","id":"237","title":"Filtering"},"238":{"body":"It contains the following information: filter input","breadcrumbs":"Configuration » Filtering » Node Filter Applicable","id":"238","title":"Node Filter Applicable"},"239":{"body":"A filter can be one of the following: \"RelativePathIs\" \"RelativePathIsNot\" \"IRelativePathIs\" \"IRelativePathIsNot\" \"RelativePathDoesStartWith\" \"RelativePathDoesNotStartWith\" \"IRelativePathDoesStartWith\" \"IRelativePathDoesNotStartWith\" \"RelativePathDoesContain\" \"RelativePathDoesNotContain\" \"IRelativePathDoesContain\" \"IRelativePathDoesNotContain\" \"RelativePathDoesEndWith\" \"RelativePathDoesNotEndWith\" \"IRelativePathDoesEndWith\" \"IRelativePathDoesNotEndWith\" \"AbsolutePathIs\" \"AbsolutePathIsNot\" \"IAbsolutePathIs\" \"IAbsolutePathIsNot\" \"AbsolutePathDoesStartWith\" \"AbsolutePathDoesNotStartWith\" \"IAbsolutePathDoesStartWith\" \"IAbsolutePathDoesNotStartWith\" \"AbsolutePathDoesContain\" \"AbsolutePathDoesNotContain\" \"IAbsolutePathDoesContain\" \"IAbsolutePathDoesNotContain\" \"AbsolutePathDoesEndWith\" \"AbsolutePathDoesNotEndWith\" \"IAbsolutePathDoesEndWith\" \"IAbsolutePathDoesNotEndWith\" TODO: document each","breadcrumbs":"Configuration » Filtering » filter","id":"239","title":"filter"},"24":{"body":"When xplr loads, it first executes the built-in init.lua to set the default values, which is then overwritten by another config file, if found using the following lookup order: --config /path/to/init.lua > ~/.config/xplr/init.lua > /etc/xplr/init.lua","breadcrumbs":"Configuration » How Config Is Loaded","id":"24","title":"How Config Is Loaded"},"240":{"body":"Type: string The input for the condition.","breadcrumbs":"Configuration » Filtering » input","id":"240","title":"input"},"241":{"body":"ToggleNodeFilter = { filter = \"RelativePathDoesNotStartWith\", input = \".\"\n} Here, ToggleNodeFilter is a message that adds or removes (toggles) the filter applied.","breadcrumbs":"Configuration » Filtering » Example:","id":"241","title":"Example:"},"242":{"body":"A column renderer is a Lua function that receives a special argument and returns a string that will be displayed in each specific field of the files table . xplr by default provides the following column renderers: xplr.fn.builtin.fmt_general_table_row_cols_0 xplr.fn.builtin.fmt_general_table_row_cols_1 xplr.fn.builtin.fmt_general_table_row_cols_2 xplr.fn.builtin.fmt_general_table_row_cols_3 xplr.fn.builtin.fmt_general_table_row_cols_4 You can either overwrite these functions, or create new functions in xplr.fn.custom and point to them. Terminal colors are supported.","breadcrumbs":"Configuration » Column Renderer » Column Renderer","id":"242","title":"Column Renderer"},"243":{"body":"The special argument contains the following fields parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink index relative_index is_before_focus is_after_focus tree prefix suffix is_selected is_focused total meta","breadcrumbs":"Configuration » Column Renderer » Table Renderer Argument","id":"243","title":"Table Renderer Argument"},"244":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Column Renderer » parent","id":"244","title":"parent"},"245":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Column Renderer » relative_path","id":"245","title":"relative_path"},"246":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Column Renderer » absolute_path","id":"246","title":"absolute_path"},"247":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Column Renderer » extension","id":"247","title":"extension"},"248":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Column Renderer » is_symlink","id":"248","title":"is_symlink"},"249":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Column Renderer » is_broken","id":"249","title":"is_broken"},"25":{"body":"The xplr configuration, exposed as xplr.config Lua API contains the following fields: general modes layouts node_types","breadcrumbs":"Configuration » config","id":"25","title":"config"},"250":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Column Renderer » is_dir","id":"250","title":"is_dir"},"251":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Column Renderer » is_file","id":"251","title":"is_file"},"252":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Column Renderer » is_readonly","id":"252","title":"is_readonly"},"253":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Column Renderer » mime_essence","id":"253","title":"mime_essence"},"254":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Column Renderer » size","id":"254","title":"size"},"255":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Column Renderer » human_size","id":"255","title":"human_size"},"256":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Column Renderer » permissions","id":"256","title":"permissions"},"257":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Column Renderer » canonical","id":"257","title":"canonical"},"258":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Column Renderer » symlink","id":"258","title":"symlink"},"259":{"body":"Type: integer Index (starting from 0) of the node.","breadcrumbs":"Configuration » Column Renderer » index","id":"259","title":"index"},"26":{"body":"This configuration is exposed via the xplr.config.general API. It contains the following fields:","breadcrumbs":"Configuration » General Config » General Config","id":"26","title":"General Config"},"260":{"body":"Type: integer Relative index from the focused node (i.e. 0th node).","breadcrumbs":"Configuration » Column Renderer » relative_index","id":"260","title":"relative_index"},"261":{"body":"Type: boolean true if the node is before the focused node.","breadcrumbs":"Configuration » Column Renderer » is_before_focus","id":"261","title":"is_before_focus"},"262":{"body":"Type: boolean true if the node is after the focused node.","breadcrumbs":"Configuration » Column Renderer » is_after_focus","id":"262","title":"is_after_focus"},"263":{"body":"Type: string The tree component based on the node's index.","breadcrumbs":"Configuration » Column Renderer » tree","id":"263","title":"tree"},"264":{"body":"Type: string The prefix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » prefix","id":"264","title":"prefix"},"265":{"body":"Type: string The suffix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » suffix","id":"265","title":"suffix"},"266":{"body":"Type: boolean true if the node is selected.","breadcrumbs":"Configuration » Column Renderer » is_selected","id":"266","title":"is_selected"},"267":{"body":"Type: boolean true if the node is under focus.","breadcrumbs":"Configuration » Column Renderer » is_focused","id":"267","title":"is_focused"},"268":{"body":"Type: integer The total number of the nodes.","breadcrumbs":"Configuration » Column Renderer » total","id":"268","title":"total"},"269":{"body":"Type: mapping of string and string The applicable meta object for the node.","breadcrumbs":"Configuration » Column Renderer » meta","id":"269","title":"meta"},"27":{"body":"Type: boolean Set it to true enable scrolling using mouse.","breadcrumbs":"Configuration » General Config » enable_mouse","id":"27","title":"enable_mouse"},"270":{"body":"Permission contains the following fields: user_read user_write user_execute group_read group_write group_execute other_read other_write other_execute sticky setgid setuid Each field holds a boolean value.","breadcrumbs":"Configuration » Column Renderer » Permission","id":"270","title":"Permission"},"271":{"body":"It contains the following fields. absolute_path extension is_dir is_file is_readonly mime_essence size human_size","breadcrumbs":"Configuration » Column Renderer » Resolved Node Metadata","id":"271","title":"Resolved Node Metadata"},"272":{"body":"xplr.fn.custom.fmt_simple_column = function(m) return m.prefix .. m.relative_path .. m.suffix\nend xplr.config.general.table.header.cols = { { format = \" path\" }\n} xplr.config.general.table.row.cols = { { format = \"custom.fmt_simple_column\" }\n} xplr.config.general.table.col_widths = { { Percentage = 100 }\n} -- With this config, you should only see a single column displaying the\n-- relative paths.","breadcrumbs":"Configuration » Column Renderer » Example: Customizing Table Renderer","id":"272","title":"Example: Customizing Table Renderer"},"273":{"body":"The default key binding is inspired by vim and slightly overlaps with nnn , but it's supposed to be customized as per user requirements. When you press ? in default mode , you can see the complete list of modes and the key mappings for each mode.","breadcrumbs":"Default Key Bindings » Default Key Bindings","id":"273","title":"Default Key Bindings"},"274":{"body":"key remaps action . show hidden / ctrl-f search : action ? global help menu G go to bottom V ctrl-a select/unselect all ctrl-c terminate ctrl-i tab next visited path ctrl-o last visited path ctrl-r refresh screen ctrl-u clear selection ctrl-w switch layout d delete down j down enter quit with result f filter g go to h left back k up up l right enter q quit r rename s sort space v toggle selection ~ go home [0-9] input","breadcrumbs":"Default Key Bindings » default","id":"274","title":"default"},"275":{"body":"key remaps action ctrl-c terminate esc escape","breadcrumbs":"Default Key Bindings » recover","id":"275","title":"recover"},"276":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"276","title":"filter"},"277":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word down j to down enter to index esc cancel k up to up [0-9] input","breadcrumbs":"Default Key Bindings » number","id":"277","title":"number"},"278":{"body":"key remaps action ctrl-c terminate esc cancel f follow symlink g top x open in gui","breadcrumbs":"Default Key Bindings » go to","id":"278","title":"go to"},"279":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-n down down ctrl-p up up ctrl-u remove line ctrl-w remove last word enter esc focus left back right enter tab toggle selection","breadcrumbs":"Default Key Bindings » search","id":"279","title":"search"},"28":{"body":"Type: boolean Set it to true to show hidden files.","breadcrumbs":"Configuration » General Config » show_hidden","id":"28","title":"show_hidden"},"280":{"body":"key remaps action c copy here ctrl-c terminate esc cancel m move here x open in gui","breadcrumbs":"Default Key Bindings » selection ops","id":"280","title":"selection ops"},"281":{"body":"key remaps action ! shell c create ctrl-c terminate e open in editor esc cancel l logs m toggle mouse q quit options s selection operations [0-9] go to index","breadcrumbs":"Default Key Bindings » action to","id":"281","title":"action to"},"282":{"body":"key remaps action ctrl-c terminate d create directory esc cancel f create file","breadcrumbs":"Default Key Bindings » create","id":"282","title":"create"},"283":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create file esc cancel","breadcrumbs":"Default Key Bindings » create file","id":"283","title":"create file"},"284":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create directory esc cancel","breadcrumbs":"Default Key Bindings » create directory","id":"284","title":"create directory"},"285":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter rename esc cancel","breadcrumbs":"Default Key Bindings » rename","id":"285","title":"rename"},"286":{"body":"key remaps action D force delete ctrl-c terminate d delete esc cancel","breadcrumbs":"Default Key Bindings » delete","id":"286","title":"delete"},"287":{"body":"key remaps action ! reverse sorters E by canonical extension reverse M by canonical mime essence reverse N by node type reverse R by relative path reverse S by size reverse backspace remove last sorter ctrl-c terminate ctrl-r reset sorters ctrl-u clear sorters e by canonical extension enter esc done m by canonical mime essence n by node type r by relative path s by size","breadcrumbs":"Default Key Bindings » sort","id":"287","title":"sort"},"288":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"288","title":"filter"},"289":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does contain","id":"289","title":"relative path does contain"},"29":{"body":"Type: boolean Set it to true to use only a subset of selected operations that forbids executing commands or performing write operations on the file-system.","breadcrumbs":"Configuration » General Config » read_only","id":"29","title":"read_only"},"290":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does not contain","id":"290","title":"relative path does not contain"},"291":{"body":"key remaps action 1 default 2 no help menu 3 no selection panel 4 no help or selection ctrl-c terminate esc cancel","breadcrumbs":"Default Key Bindings » switch layout","id":"291","title":"switch layout"},"292":{"body":"xplr supports pluggable Lua modules that can be used to easily configure or extend xplr UI and functionalities. Installing Plugins Writing Plugins Awesome Plugins","breadcrumbs":"Plugin » Plugin","id":"292","title":"Plugin"},"293":{"body":"Until we get a cool plugin manager, let's install plugins manually using the following procedure: Add the following line in ~/.config/xplr/init.lua package.path = os.getenv(\"HOME\") .. '/.config/xplr/plugins/?/src/init.lua' Clone the plugin mkdir -p ~/.config/xplr/plugins git clone https://github.com/sayanarijit/material-landscape2.xplr ~/.config/xplr/plugins/material-landscape2 Require the module in ~/.config/xplr/init.lua require(\"material-landscape2\").setup() -- The setup arguments might differ for different plugins.\n-- Visit the project README for setup instructions.","breadcrumbs":"Plugin » Installing Plugins » Installing Plugins","id":"293","title":"Installing Plugins"},"294":{"body":"Anyone who can write Lua code, can write xplr plugins. Just follow the instructions and best practices:","breadcrumbs":"Plugin » Writing Plugins » Writing Plugins","id":"294","title":"Writing Plugins"},"295":{"body":"xplr plugins are named using hiphen (-) separated words that may also include integers. They will be plugged using the require() function in Lua.","breadcrumbs":"Plugin » Writing Plugins » Naming","id":"295","title":"Naming"},"296":{"body":"A minimal plugin should confirm to the following structure: plugin-name\n├── README.md\n└── src └── init.lua You can also use this template .","breadcrumbs":"Plugin » Writing Plugins » Structure","id":"296","title":"Structure"},"297":{"body":"This is where you document what the plugin does, how to use it, etc.","breadcrumbs":"Plugin » Writing Plugins » README.md","id":"297","title":"README.md"},"298":{"body":"This file is executed to load the plugin. It should expose a setup() function, which will be used by the users to setup the plugin. Example: local function setup(args) local xplr = xplr -- do stuff with xplr\nend return { setup = setup }","breadcrumbs":"Plugin » Writing Plugins » src/init.lua","id":"298","title":"src/init.lua"},"299":{"body":"When publishing plugins on GitHub or other repositories, it's a best practice to append .xplr to the name to make them distinguishable. Similar to the *.nvim naming convention for Neovim plugins. Finally, after publishing, don't hesitate to let us know .","breadcrumbs":"Plugin » Writing Plugins » Publishing","id":"299","title":"Publishing"},"3":{"body":"Although speed is not the primary concern, xplr is already fast enough so that you can take it out for a walk into your node_modules or /nix/store any time you want. I currently measure the most commonly used operations and I have seen it improve significantly over time, and it's only the start. Tip: A quick and easy way to optimize UI rendering is reducing the number of columns in the table. Note: If you feel xplr is not behaving at its optimal, this is probably because I am waiting for someone to complain. I want to avoid optimizing things I don't need to, because optimization often requires either complexity or feature sacrifice or both.","breadcrumbs":"Introduction » Fast","id":"3","title":"Fast"},"30":{"body":"Type: boolean Set it to true when the special recover mode gets too annoying to appreciate the good intentions. When enabled, typing the wrong keys won't result in any action.","breadcrumbs":"Configuration » General Config » disable_recover_mode","id":"30","title":"disable_recover_mode"},"300":{"body":"Visit Awesome Plugins for xplr plugin examples.","breadcrumbs":"Plugin » Writing Plugins » Examples","id":"300","title":"Examples"},"301":{"body":"Tutorial: Adding a New Mode Example: Using Environment Variables and Pipes Example: Using Lua Function Calls Example: Customizing Table Renderer","breadcrumbs":"Plugin » Writing Plugins » Also See","id":"301","title":"Also See"},"302":{"body":"Here's a list of awesome xplr plugins that you might want to check out. If none of the following plugins work for you, it's very easy to write your own .","breadcrumbs":"Plugin » Awesome Plugins » Awesome Plugins","id":"302","title":"Awesome Plugins"},"303":{"body":"Extension Integration Theme","breadcrumbs":"Plugin » Awesome Plugins » Categories","id":"303","title":"Categories"},"304":{"body":"type-to-nav.xplr Inspired by nnn's type-to-nav mode for xplr, with some tweaks. completion.xplr The missing tab completion for xplr input buffer. comex.xplr One xplr plugin to compress and extract them all.","breadcrumbs":"Plugin » Awesome Plugins » Extension","id":"304","title":"Extension"},"305":{"body":"dragon.xplr Drag and drop files using dragon . dua-cli.xplr Get the disk usage using dua-cli with selection support. fzf.xplr Fuzzy search using fzf to focus on a file or enter into a directory. paste-rs.xplr Use this plugin to paste your files to paste.rs , and open/delete them later using fzf . preview-tabbed.xplr Preview paths using suckless tabbed and nnn preview-tabbed . qrcp.xplr Send and receive files via QR code using qrcp . trash-cli.xplr Trash files and directories using trash-cli . xargs.xplr Batch execute commands on the focused or selected files using xargs. xclip.xplr Copy and paste with system clipboard using xclip . zoxide.xplr Change directory using the zoxide database.","breadcrumbs":"Plugin » Awesome Plugins » Integration","id":"305","title":"Integration"},"306":{"body":"material-landscape.xplr Material Landscape material-landscape2.xplr Material Landscape 2 zentable.xplr A clean, distraction free xplr table UI icons.xplr An icon theme for xplr.","breadcrumbs":"Plugin » Awesome Plugins » Theme","id":"306","title":"Theme"},"307":{"body":"xplr is designed to integrate well with other tools and commands. It can be used as a file picker or a pluggable file manager. Awesome Integrations","breadcrumbs":"Integration » Integration","id":"307","title":"Integration"},"308":{"body":"Here's a list of awesome xplr integrations that you might want to check out. If none of the following integrations work for you, you can create your own and let us know .","breadcrumbs":"Integration » Awesome Integrations » Awesome Integrations","id":"308","title":"Awesome Integrations"},"309":{"body":"Editor Shell Security Tools","breadcrumbs":"Integration » Awesome Integrations » Categories","id":"309","title":"Categories"},"31":{"body":"Type: nullable string This is the shape of the cursor visible when the input buffer contains some string.","breadcrumbs":"Configuration » General Config » cursor.format","id":"31","title":"cursor.format"},"310":{"body":"xplr.vim vim-floaterm","breadcrumbs":"Integration » Awesome Integrations » Editor","id":"310","title":"Editor"},"311":{"body":"powerlevel10k","breadcrumbs":"Integration » Awesome Integrations » Shell","id":"311","title":"Shell"},"312":{"body":"gpg-tui","breadcrumbs":"Integration » Awesome Integrations » Security Tools","id":"312","title":"Security Tools"},"313":{"body":"Saner key bindings. Pipes. Native search & filter. Create, copy, move, delete files directly. logging support. Version compatibility instructions. Implement CLI arguments. ~Add support for tabs and/or panes (non native)~ hacked | discussion ~Implement bookmarks.~ hacked Add sorting support. Add filter support. File previews. Implement plugins support (or some way to easily share configuration). Bigger (and better) help menu. Offline docs. Support for background services. ~Customize~ switch UI in run-time. More tests and benchmarks. Measure code coverage. Improve the vim plugin . Cleanup, refactor, optimize. add more Like this project so far? Please consider contributing .","breadcrumbs":"TODO » TODO","id":"313","title":"TODO"},"314":{"body":"These are the alternative TUI/CLI file managers/explorers you might want to check out (in no particular order). nnn vifm ranger lf joshuto fff mc broot hunter noice clifm clifm (non curses) add more","breadcrumbs":"Alternatives » Alternatives","id":"314","title":"Alternatives"},"315":{"body":"When you upgrade xplr, you might see an error like this Incompatible script version in: /home/sayanarijit/.config/xplr/init.lua. The script version is: 0.9.0, the required version is: 0.10.1. Visit https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide All you need to do is follow the instructions starting from your config version, all the way to the required version. Expand for more information With every update, we either implement a major breaking change (e.g. deprecating or replacing messages), or a minor feature addition (e.g. adding new messages) or patch, fixes, and optimization (e.g. performance optimization). Knowing that we use the {major}.{minor}.{patch} versioning format, Major version mismatch are generally incompatible. xplr will fail with error. Minor version upgrades (not downgrades) and patch fixes are backwards compatible. You might get notified by log a message which you can disable by updating the version in your config file. However, if the config file has a higher value for the minor version than the app, then also xplr will fail with error, suggesting you to visit this page. Though in that case, you will be downgrading your config file based on your app version. e.g. 1.0.0 -> 1.0.x: Bug fix (fully compatible). 1.0.0 -> 1.x.x: Only backwards compatible. You can't generally use for e.g. app-1.0.0 with config-1.1.0. But vice versa is fine. 1.0.0 -> x.x.x: Not compatible at all. Note that until we're v1, we'll be using the {minor} version number as {major}, and the {patch} fix number as {minor} to determine compatibility.","breadcrumbs":"Upgrade Guide » Upgrade Guide","id":"315","title":"Upgrade Guide"},"316":{"body":"v0.13.7 -> v0.14.5 macOS users need to place their config file (init.lua) in $HOME/.config/xplr/ or /etc/xplr/. Library users please refer to the latest API docs. Check out the new messages: {Start|Stop|Toggle}Fifo. These enable support for FIFO based file previews . You can disable the recover mode using config.general.disable_recover_mode = true. Try running xplr --help. Yes, CLI has been implemented. Since version v0.14.3, StartFifo and ToggleFifo will write to the FIFO path when called. So, there's no need to pipe the focus path explicitely. Since version v0.14.3, general config xplr.config.start_fifo is available which can be set to a file path to start a fifo when xplr starts. Since version v0.14.4, $XPLR_SESSION_PATH can be used to dump session related data. Like this project so far? Please consider contributing . v0.12.1 -> v0.13.7 Lua functions called using CallLua and CallLuaSilently messages will receive CallLuaArg object as the function argument (instead of the App object). Each node_types config will inherit defaults from matching less specifig node_types config and overwrite them. Since version v0.13.2, you don't need to use/send Refresh anymore. It will be auto-handled by xplr. v0.11.1 -> v0.12.1 xplr.config.node_types.mime_essence has split into type and subtype. Hence, instead of xplr.config.node_types.mime_essence[\"text/plain\"] = .. use xplr.config.node_types.mime_essence[\"text\"] = { plain = .. }. You can also define xplr.config.node_types.mime_essence[\"text\"][\"*\"] that will match all text types (text/*). v0.10.2 -> v0.11.1 remaps: has been removed to avoid confusion. Use lua assignments instead. For e.g. xplr.config.modes.builtin.default.key_bindings.on_key[\"v\"] = xplr.config.modes.builtin.default.key_bindings.on_key.space v0.9.1 -> v0.10.2 config.yml has been fully replaced with init.lua . If you have a lot of customization in your config.yml, xplr-yml2lua can help you with migrating it to init.lua. Handlebars templates has been replaced with Lua functions . You can either remove the customizations or overwrite the functions accordingly. Added new messages CallLua and CallLuaSilently to call lua functions. The app state will be passed as input to the functions, and the returned messages will be handled by xplr. CallLua and CallLuaSilently are more flexible (and probably faster) alternatives to Call, CallSilently, BashExec and BashExecSilently. e.g. v0.9.0 -> v0.9.1 You can now set remaps: {key: null} to un-map a key. gx will open the item under focus. New key map :sx will open the selected items. v0.8.0 -> v0.9.0 Your previous config should mostly work fine. However, in case you are using SwitchMode heavily in your custom config, follow along. Introduced new message PopMode. You might want to use this message instead of SwitchMode* when returning back to the previous mode. After using (the group of) PopMode and SwitchMode* messages, you are now required to Refresh manually to avoid the UI lag. Pressing any invalid key will now lead you to the recover mode and will protect you from typing further invalid keys. Press esc to escape the recover mode. Introduced new message LogWarning, similar to other Log* messages. Creating files and directories has been optimized for batch creation. v0.7.2 -> v0.8.0 If you have made changes to the config file, Replace message Explore with ExplorePwd or ExplorePwdAsync or probably ExploreParentsAsync. Pipe $XPLR_PIPE_FOCUS_OUT has been removed. Use $XPLR_FOCUS_PATH env var instead. You might want to review your path escaping logics. For e.g. use echo FocusPath: \"'\"$PWD\"'\" >> $PIPE instead of echo \"FocusPath: $PWD\" >> $PIPE. v0.7.0 -> v0.7.2 Just update the version in your config file. For version >= v0.7.1, you might want to free up or remap the tab key in search mode to enable easy selection during search. v0.6.0 -> v0.7.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, You can make the Table: ..., InputAndLogs: ... layout values null and define the common properties in the general.panel_ui instead. v0.5.13 -> v0.6.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, Rename add_modifier: {bits: 1} to add_modifiers: [Bold], sub_modifier: {bits: 1} to sub_modifiers: [Bold] and so on. Rename percentage: 10 to Percentage: 10, ratio: 1 to Ratio: 1 and so on. You might want to free up or remap the ctrl-w key binding in default mode to enable layout switching. Optionally, checkout this new theme to learn more about what's new. v0.5.0 -> v0.5.13 Just update the version in your config file. For versions >= v0.5.8, you can set $OPENER env var to declare a global GUI file opener (to open files using keys gx). You might also want to update other mappings to handle files with names starting with - (hiphen). For example, instead of rm ${filename} use rm -- ${filename}. Same goes for cp, mv, cat, touch etc. For version >= v0.5.13, you might want to use the more specific SwitchModeBuiltin and SwitchModeCustom messages instead of the general SwitchMode message. v0.4.3 -> v0.5.0 If you haven't have any changes in the config file, you should be fine just updating the version number. Else do the following Replace {RelativePathIs, case_sensitive: true} with RelativePathIs. Replace {RelativePathIs, case_sensitive: false} with IRelativePathIs. Do the same with other filters you are using. You might want to update your backspace handling to use the RemoveInputBufferLastCharacter message. You might want to free-up f, s, ctrl-r and ctrl-u key bindings in the default mode, or remap them. You might want to use the new UI variables. Update your config version to v0.5.0. v0.4.2 -> v0.4.3 If you have customized general.table.row.cols, you might want to update it to use the new variables with better symlink support. v0.4.1 -> v0.4.2 In case you have mapped the keys q, ctrl-i and ctrl-o, you may want to revisit the default mode key bindings and remap accordingly to use the new functionalities. v0.3.13 -> v0.4.1 A lot has changed (apologies). But I promise from now on, upgrading will be much less painful (thanks to @maximbaz 's valuable inputs and code reviews ). So, to start with the upgrade, let's remove everything from your config file except the version field and your custom modifications. If version is the only thing remaining, update it to v0.4.1 and you are done. Else, do the following Rename general.focused_ui to general.focus_ui ( see here ). Rename filetypes to node_types. ( see here ) Rename custom field to meta. ( see here ) Move icon to meta.icon. ( see here ) Rename normal_ui to default_ui. ( see here ) Split modes into modes.builtin and modes.custom ( see here ). Migrate your custom modes to modes.custom. And copy only the changes in the in-built modes in modes.builtin. Finally, update the version to v0.4.1. v0.3.8 -> v0.3.13 Your current config should work fine. However, you might want to replace some Call and BashExec messages with CallSilently and BashExecSilently to remove the flickering of the screen. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for Call and BashExec in the new config. Compare and probably replace the associated actions in your current config v0.3.0 -> v0.3.8 Your current config should work fine. However, you might want to replace some ResetNodeFilters messages with RemoveNodeFilter and RemoveNodeFilterFromInput to get a better search and filter experience. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for RemoveNodeFilterFromInput in the new config. Compare and probably replace the associated actions in your current config. v0.2.14 -> v0.3.0 If you haven't made any changes to the configuration, you can delete and regenerate it. Else do the following: $XPLR_APP_YAML has been removed. You can use Debug to export the app state. $XPLR_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_GLOBAL_HELP_MENU has been ported to file $XPLR_PIPE_GLOBAL_HELP_MENU_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_DIRECTORY_NODES has been ported to file $XPLR_PIPE_DIRECTORY_NODES_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_LOGS has been ported to file $XPLR_PIPE_LOGS_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_PIPE_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. Finally, update the version in your config file.","breadcrumbs":"Upgrade Guide » Instructions","id":"316","title":"Instructions"},"317":{"body":"Building an active community of awesome people and learning stuff together is one of my reasons to publish this tool and maintain it. Hence, please feel free to reach out via your preferred way. Real-time chat lovers can join our discord channel . Forum discussion veterans can start a new GitHub discussion . BTW I like Miyazaki and Shinkai works.","breadcrumbs":"Community » Community","id":"317","title":"Community"},"318":{"body":"If you like xplr, and want to contribute, that would be really awesome. You can contribute to this project in the following ways Contribute your time and expertise (read CONTRIBUTING.md for instructions). Developers: You can help me improve my code, fix things, implement features etc. Repository maintainers: You can save the users from the pain of managing xplr in their system manually. Code Reviewers: Teach me your ways of code. Designers: You can make the logo even more awesome, donate stickers and blog post worthy pictures. Bloggers, YouTubers & broadcasters: You can help spread the word. Contribute by donating. You can fuel me with coins of encouragement or buy me a coffee . For further queries or concern related to xplr, just ask us .","breadcrumbs":"Contribute » Backers","id":"318","title":"Backers"},"32":{"body":"Type: Style Style of the cursor.","breadcrumbs":"Configuration » General Config » cursor.style","id":"32","title":"cursor.style"},"33":{"body":"Type: string The name of one of the layout to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_layout","id":"33","title":"initial_layout"},"34":{"body":"Type: string The name of one of the mode to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_mode","id":"34","title":"initial_mode"},"35":{"body":"Type: list of Node Sorter Applicable Initial group if sorters applied to the nodes list in the table.","breadcrumbs":"Configuration » General Config » initial_sorting","id":"35","title":"initial_sorting"},"36":{"body":"Type: Style Default style of the table.","breadcrumbs":"Configuration » General Config » table.style","id":"36","title":"table.style"},"37":{"body":"Type: nullable integer Default spacing of the columns in the table.","breadcrumbs":"Configuration » General Config » table.col_spacing","id":"37","title":"table.col_spacing"},"38":{"body":"Type: nullable list of Constraint Width of each column in the table.","breadcrumbs":"Configuration » General Config » table.col_widths","id":"38","title":"table.col_widths"},"39":{"body":"Type: nullable integer Height of the table header.","breadcrumbs":"Configuration » General Config » table.header.height","id":"39","title":"table.header.height"},"4":{"body":"xplr prefers to stay minimal, both in terms of features and binary size, but just like speed, minimalism isn't as aggressively pursued as configurability. If adding some feature, lines of code, or a dependency allows the users to be a little more productive or allows xplr to be a little more configurable, it will be considered. But of-course, the bulk vs productivity gain per user balance will also be considered in the decision-making.","breadcrumbs":"Introduction » Minimalist","id":"4","title":"Minimalist"},"40":{"body":"Type: Style Style of table header.","breadcrumbs":"Configuration » General Config » table.header.style","id":"40","title":"table.header.style"},"41":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ), that define the content and style of header.","breadcrumbs":"Configuration » General Config » table.header.cols","id":"41","title":"table.header.cols"},"42":{"body":"Type: nullable integer Height of each row in the table.","breadcrumbs":"Configuration » General Config » table.row.height","id":"42","title":"table.row.height"},"43":{"body":"Type: Style Style of table rows.","breadcrumbs":"Configuration » General Config » table.row.style","id":"43","title":"table.row.style"},"44":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ). However, unlike table.header.cols , the format field here points to a column renderer function .","breadcrumbs":"Configuration » General Config » table.row.cols","id":"44","title":"table.row.cols"},"45":{"body":"Type: List of tree configuration It expects a list of three items. The first component of the tree, then the middle components, and finally the last component of the tree. Each item requires the format field which is a string, and the style field, which is the Style object. Example: xplr.config.general.table.tree = { { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"╰─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } },\n} TODO: Continue documentation.","breadcrumbs":"Configuration » General Config » table.tree","id":"45","title":"table.tree"},"46":{"body":"xplr is a modal file explorer. That means the users switch between different modes, each containing a different set of key bindings to avoid clashes. Users can switch between these modes at run-time. The modes can be configured using the xplr.config.modes Lua API. It contains the following fields: builtin custom","breadcrumbs":"Configuration » Modes » Modes","id":"46","title":"Modes"},"47":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.builtin API. xplr by default provides the following builtin modes: default recover selection_ops create create_directory create_file number go_to rename delete action search filter relative_path_does_contain relative_path_does_not_contain sort switch_layout quit Visit the Default Key Bindings to see what each mode does.","breadcrumbs":"Configuration » Modes » builtin","id":"47","title":"builtin"},"48":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.custom API. It allows the users to define custom modes. Example: xplr.config.modes.custom.example = { name = \"example\", key_bindings = { on_key = { enter = { help = \"default mode\", messages = { \"PopMode\", { SwitchModeBuiltin = \"default\" } } } } }\n} xplr.config.general.initial_mode = \"example\" -- when you load xplr, you should be in the \"example\" mode,\n-- pressing \"enter\" should take you to the \"default\" mode.","breadcrumbs":"Configuration » Modes » custom","id":"48","title":"custom"},"49":{"body":"A mode contains the following information: name help extra_help key_bindings","breadcrumbs":"Configuration » Modes » Mode","id":"49","title":"Mode"},"5":{"body":"Embedded LuaJIT for portability and extensibility. Switchable recover mode: Saves you from doing unwanted things when in a hurry. Sane (vim-like) defaults: Use h, j, k, l or arrow keys for basic navigation. Go to top using g g, and bottom using G. Travel history using ctrl-o and ctrl-i. Go to home directory using ~. Enter search mode with / or ctrl-f. Go to absolute index (e.g. 4) using 4 enter or : 4 enter. Go to relative index (e.g. 4 down) using 4 down or : 4 down. Follow symlink using g f. Open in GUI using g x. Spawn terminal using : !. Toggle selection using v or space. Toggle select all using V or ctrl-a. Clear selections using ctrl-u. Separate keys for navigation: navigation keys are separated from the action keys (e.g. file opening action) to avoid mistakenly performing unwanted actions while navigating. Always visible panels to save you brain cycles: Selection list. Help menu. Input & logs. Filter and sort pipeline. Batch creation: Create multiple files and directories without repeating keys. Batch sort & filter: Apply sorters and filters in without repeating keys. Custom file properties: Display custom file properties with custom colors in the table using Lua functions. Input buffer: Read user input using the built-in input buffer with customizable behavior. Switchable layouts: Switch layouts dynamically without leaving xplr. Saved locations: Never lose context when traveling back and forth directories. Auto refresh state: Auto refresh app state when the $PWD changes. Manually refresh UI when other apps mess it up. FIFO-based previews: Easy to manage FIFO file that can be used to integrate with previewers . Different quit options: Quit with success without any output (q). Quit with success and the result printed on stdout (enter). Quit with success and the present working directory printed on stdout (: q p). Quit with success and the path under focus printed on stdout (: q f). Quit with success and the selection printed on stdout (: q s). Quit with failure (ctrl-c).","breadcrumbs":"Introduction » Other features","id":"5","title":"Other features"},"50":{"body":"Type: string This is the name of the mode visible in the help menu.","breadcrumbs":"Configuration » Modes » name","id":"50","title":"name"},"51":{"body":"Type: nullable string If specified, the help menu will display this instead of the auto generated mappings.","breadcrumbs":"Configuration » Modes » help","id":"51","title":"help"},"52":{"body":"Type: nullable string If specified, the help menu will display this along-side the auto generated help menu.","breadcrumbs":"Configuration » Modes » extra_help","id":"52","title":"extra_help"},"53":{"body":"Type: Key Bindings The key bindings available in that mode.","breadcrumbs":"Configuration » Modes » key_bindings","id":"53","title":"key_bindings"},"54":{"body":"Key bindings define how each keyboard input will be handled in a specific mode. See the default key bindings for example. Key bindings contains the following information: on_key on_alphabet on_number on_special_character default","breadcrumbs":"Configuration » Modes » Key Bindings","id":"54","title":"Key Bindings"},"55":{"body":"Type: mapping of Key to nullable Action Defines what to do when a specific key is pressed.","breadcrumbs":"Configuration » Modes » on_key","id":"55","title":"on_key"},"56":{"body":"Type: nullable Action An action to perform if the keyboard input is an alphabet and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_alphabet","id":"56","title":"on_alphabet"},"57":{"body":"Type: nullable Action An action to perform if the keyboard input is a number and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_number","id":"57","title":"on_number"},"58":{"body":"Type: nullable Action An action to perform if the keyboard input is a special character and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_special_character","id":"58","title":"on_special_character"},"59":{"body":"Type: nullable Action Default action to perform in case of a keyboard input not mapped via any of the on_key , on_alphabet , on_number or on_special_character field.","breadcrumbs":"Configuration » Modes » default","id":"59","title":"default"},"6":{"body":"Nice to you have here! Let's quickly start our xplr journey with the following steps: Install Post Install","breadcrumbs":"Quickstart » Quickstart","id":"6","title":"Quickstart"},"60":{"body":"A key can be one of the following: 0, 1, ... 9 a, b, ... z A, B, ... Z f1, f2, ... f12 ctrl-a, ctrl-b, ... ctrl-z alt-a, alt-b, ... alt-z backspace left right up down home end page-up page-down back-tab delete insert enter tab esc And finally, the special characters - including space (\" \").","breadcrumbs":"Configuration » Modes » Key","id":"60","title":"Key"},"61":{"body":"An action contains the following information: help messages","breadcrumbs":"Configuration » Modes » Action","id":"61","title":"Action"},"62":{"body":"Type: nullable string Description of what it does. If unspecified, it will be excluded from the help menu.","breadcrumbs":"Configuration » Modes » help","id":"62","title":"help"},"63":{"body":"Type: A list of Message to send. The list of messages to send when a key is pressed.","breadcrumbs":"Configuration » Modes » messages","id":"63","title":"messages"},"64":{"body":"Assuming xplr is installed and setup , let's add our own mode to integrate xplr with fzf . We'll call it fzxplr mode. First, let's add a custom mode called fzxplr, and map the key F to an action that will call fzf to search and focus on a file or enter into a directory. xplr.config.modes.custom.fzxplr = { name = \"fzxplr\", key_bindings = { on_key = { F = { help = \"search\", messages = { { BashExec = [===[ PTH=$(cat \"${XPLR_PIPE_DIRECTORY_NODES_OUT:?}\" | awk -F/ '{print $NF}' | fzf) if [ -d \"$PTH\" ]; then echo ChangeDirectory: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" else echo FocusPath: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" fi ]===] }, \"PopMode\", }, }, }, default = { messages = { \"PopMode\", }, }, },\n} As you can see, the key F in mode fzxplr (the name can be anything) executes a script in bash. BashExec, PopMode, SwitchModeBuiltin, ChangeDirectory and FocusPath are messages , $XPLR_PIPE_MSG_IN, $XPLR_PIPE_DIRECTORY_NODES_OUT are environment variables exported by xplr before executing the command. They contain the path to the input and output pipes that allows external tools to interact with xplr. Now that we have our new mode ready, let's add an entry point to this mode via the default mode. xplr.config.modes.builtin.default.key_bindings.on_key[\"F\"] = { help = \"fzf mode\", messages = { { SwitchModeCustom = \"fzxplr\" }, },\n} Now let's try out the new xplr-fzf integration. xplr-fzf.gif Visit Awesome Plugins for more integration options.","breadcrumbs":"Configuration » Modes » Tutorial: Adding a New Mode","id":"64","title":"Tutorial: Adding a New Mode"},"65":{"body":"You can think of xplr as a server. Just like web servers listen to HTTP requests, xplr listens to messages . You can send these messages to an xplr session in the following ways: Via key bindings Via Lua function calls Via shell command using the input pipe","breadcrumbs":"Configuration » Message » Message","id":"65","title":"Message"},"66":{"body":"To send messages using the key bindings or Lua function calls , messages are represented in Lua syntax. For example: \"Quit\" { FocusPath = \"/path/to/file\" } { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } } However, to send messages using the input pipe , they need to be represented using YAML (or JSON ) syntax. For example: Quit FocusPath: \"/path/to/file\" Call: { command: bash, args: [\"-c\", \"read -p test\"] }","breadcrumbs":"Configuration » Message » Format","id":"66","title":"Format"},"67":{"body":"","breadcrumbs":"Configuration » Message » Full List of Messages","id":"67","title":"Full List of Messages"},"68":{"body":"YAML: ExplorePwd Explore the present working directory and register the filtered nodes. This operation is expensive. So, try to avoid using it too often.","breadcrumbs":"Configuration » Message » \"ExplorePwd\"","id":"68","title":"\"ExplorePwd\""},"69":{"body":"YAML: ExplorePwdAsync Explore the present working directory and register the filtered nodes asynchronously. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExplorePwdAsync\"","id":"69","title":"\"ExplorePwdAsync\""},"7":{"body":"You can install xplr using one of the following ways. Each has their own advantages and limitations. For example, the Direct Download , From crates.io , and Build From Source methods allow the users to install the latest possible version of xplr, but they have one common drawback - the user will need to keep an eye on the releases, and manually upgrade xplr when a new version is available. One way to keep an eye on the releases is to watch the repository .","breadcrumbs":"Quickstart » Install » Install","id":"7","title":"Install"},"70":{"body":"YAML: ExploreParentsAsync Explore the present working directory along with its parents and register the filtered nodes. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore just the $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExploreParentsAsync\"","id":"70","title":"\"ExploreParentsAsync\""},"71":{"body":"YAML: Refresh Refresh the UI. But it will not re-explore the directory if the working directory is the same. If there is some change in the working directory and you want to re-explore it, use the Explore message instead. Also, it will not clear the screen. Use ClearScreen for that.","breadcrumbs":"Configuration » Message » \"Refresh\"","id":"71","title":"\"Refresh\""},"72":{"body":"YAML: ClearScreen Clears the screen.","breadcrumbs":"Configuration » Message » \"ClearScreen\"","id":"72","title":"\"ClearScreen\""},"73":{"body":"YAML: FocusNext Focus next node.","breadcrumbs":"Configuration » Message » \"FocusNext\"","id":"73","title":"\"FocusNext\""},"74":{"body":"YAML: FocusNextByRelativeIndex: int Focus on the nth node relative to the current focus where n is a given value. YAML Example: FocusNextByRelativeIndex: 2 Lua Example: { FocusNextByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusNextByRelativeIndex = int }","id":"74","title":"{ FocusNextByRelativeIndex = int }"},"75":{"body":"YAML: FocusNextByRelativeIndexFromInput Focus on the nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusNextByRelativeIndexFromInput\"","id":"75","title":"\"FocusNextByRelativeIndexFromInput\""},"76":{"body":"YAML: FocusPrevious Focus on the previous item.","breadcrumbs":"Configuration » Message » \"FocusPrevious\"","id":"76","title":"\"FocusPrevious\""},"77":{"body":"YAML: FocusPreviousByRelativeIndex: int Focus on the -nth node relative to the current focus where n is a given value. YAML Example: FocusPreviousByRelativeIndex: 2 Lua Example: { FocusPreviousByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusPreviousByRelativeIndex = int }","id":"77","title":"{ FocusPreviousByRelativeIndex = int }"},"78":{"body":"YAML: FocusPreviousByRelativeIndexFromInput Focus on the -nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusPreviousByRelativeIndexFromInput\"","id":"78","title":"\"FocusPreviousByRelativeIndexFromInput\""},"79":{"body":"YAML: FocusFirst Focus on the first node.","breadcrumbs":"Configuration » Message » \"FocusFirst\"","id":"79","title":"\"FocusFirst\""},"8":{"body":"xplr can be installed from one of the following community maintained repositories: packaging status","breadcrumbs":"Quickstart » Install » Community Maintained Repositories","id":"8","title":"Community Maintained Repositories"},"80":{"body":"YAML: FocusLast Focus on the last node.","breadcrumbs":"Configuration » Message » \"FocusLast\"","id":"80","title":"\"FocusLast\""},"81":{"body":"YAML: FocusPath: string Focus on the given path. YAML Example: FocusPath: /path/to/file Lua Example: { FocusPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { FocusPath = \"string\" }","id":"81","title":"{ FocusPath = \"string\" }"},"82":{"body":"YAML: FocusPathFromInput Focus on the path read from input buffer.","breadcrumbs":"Configuration » Message » \"FocusPathFromInput\"","id":"82","title":"\"FocusPathFromInput\""},"83":{"body":"YAML: FocusByIndex: int Focus on the absolute nth node where n is a given value. YAML Example: FocusByIndex: 2 Lua Example: { FocusByIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusByIndex = int }","id":"83","title":"{ FocusByIndex = int }"},"84":{"body":"YAML: FocusByIndexFromInput Focus on the absolute nth node where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusByIndexFromInput\"","id":"84","title":"\"FocusByIndexFromInput\""},"85":{"body":"YAML: FocusByFileName: string Focus on the file by name from the present working directory. YAML Example: FocusByFileName: filename.ext Lua Example: { FocusByFileName = \"filename.ext\" }","breadcrumbs":"Configuration » Message » { FocusByFileName = \"string\" }","id":"85","title":"{ FocusByFileName = \"string\" }"},"86":{"body":"YAML: ChangeDirectory: string Change the present working directory ($PWD) YAML Example: ChangeDirectory: /path/to/directory Lua Example: { ChangeDirectory = \"/path/to/directory\" }","breadcrumbs":"Configuration » Message » { ChangeDirectory = \"string\" }","id":"86","title":"{ ChangeDirectory = \"string\" }"},"87":{"body":"YAML: Enter Enter into the currently focused path if it's a directory.","breadcrumbs":"Configuration » Message » \"Enter\"","id":"87","title":"\"Enter\""},"88":{"body":"YAML: Back Go back to the parent directory.","breadcrumbs":"Configuration » Message » \"Back\"","id":"88","title":"\"Back\""},"89":{"body":"YAML: LastVisitedPath Go to the last path visited.","breadcrumbs":"Configuration » Message » \"LastVisitedPath\"","id":"89","title":"\"LastVisitedPath\""},"9":{"body":"Official Community Repo sudo pacman -S xplr AUR Binary version: paru -S xplr-bin Git version: paru -S xplr-git","breadcrumbs":"Quickstart » Install » Arch Linux","id":"9","title":"Arch Linux"},"90":{"body":"YAML: NextVisitedPath Go to the next path visited.","breadcrumbs":"Configuration » Message » \"NextVisitedPath\"","id":"90","title":"\"NextVisitedPath\""},"91":{"body":"YAML: FollowSymlink Follow the symlink under focus to its actual location.","breadcrumbs":"Configuration » Message » \"FollowSymlink\"","id":"91","title":"\"FollowSymlink\""},"92":{"body":"YAML: BufferInput(String) Append/buffer the given string into the input buffer. YAML Example: BufferInput: foo Lua Example: { BufferInput = \"foo\" }","breadcrumbs":"Configuration » Message » { BufferInput = \"string\" }","id":"92","title":"{ BufferInput = \"string\" }"},"93":{"body":"YAML: BufferInputFromKey Append/buffer the characted read from a keyboard input into the input buffer.","breadcrumbs":"Configuration » Message » \"BufferInputFromKey\"","id":"93","title":"\"BufferInputFromKey\""},"94":{"body":"YAML: SetInputBuffer: string Set/rewrite the input buffer with the given string. When the input buffer is not-null (even if empty string) it will show in the UI. YAML Example: SetInputBuffer: foo Lua Example: { SetInputBuffer = \"foo\" }","breadcrumbs":"Configuration » Message » { SetInputBuffer = \"string\" }","id":"94","title":"{ SetInputBuffer = \"string\" }"},"95":{"body":"YAML: RemoveInputBufferLastCharacter Remove input buffer's last character.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastCharacter\"","id":"95","title":"\"RemoveInputBufferLastCharacter\""},"96":{"body":"YAML: RemoveInputBufferLastWord Remove input buffer's last word.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastWord\"","id":"96","title":"\"RemoveInputBufferLastWord\""},"97":{"body":"YAML: ResetInputBuffer Reset the input buffer back to null. It will not show in the UI.","breadcrumbs":"Configuration » Message » \"ResetInputBuffer\"","id":"97","title":"\"ResetInputBuffer\""},"98":{"body":"YAML: SwitchMode: string Switch input mode . NOTE: To be specific about which mode to switch to, use SwitchModeBuiltin or SwitchModeCustom instead. YAML Example: SwitchMode: default Lua Example: { SwitchMode = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchMode = \"string\" }","id":"98","title":"{ SwitchMode = \"string\" }"},"99":{"body":"YAML: SwitchModeBuiltin: string Switch to a builtin mode . YAML Example: SwitchModeBuiltin: default Lua Example: { SwitchModeBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchModeBuiltin = \"string\" }","id":"99","title":"{ SwitchModeBuiltin = \"string\" }"}},"length":319,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"315":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"306":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"317":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":2.0},"314":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"316":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"316":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"316":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"305":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":10,"docs":{"2":{"tf":1.0},"273":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"318":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"316":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.0},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"303":{"tf":1.0},"309":{"tf":1.0}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"306":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":7,"docs":{"242":{"tf":1.7320508075688772},"272":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"318":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":25,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"21":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":5.196152422706632},"41":{"tf":1.0},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"316":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.0},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"314":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.23606797749979},"316":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":28,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"313":{"tf":1.0},"317":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"305":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"313":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"316":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"190":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":68,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"215":{"tf":2.0},"220":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"316":{"tf":1.0}}}},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"314":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":2.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"305":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"306":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":15,"docs":{"107":{"tf":2.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"305":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"316":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"316":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"313":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"315":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.7320508075688772},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"306":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":31,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.4142135623730951},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.0}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"u":{"a":{"df":55,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"314":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"313":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"241":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"243":{"tf":1.0},"269":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":3.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"316":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":8,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":4.0},"317":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"304":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":78,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0}},"e":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"314":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":1.7320508075688772},"243":{"tf":1.0},"256":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":14,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"2":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"316":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"318":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"317":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.4142135623730951}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"305":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"316":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}},"df":1,"docs":{"305":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"316":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"317":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"316":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.0},"316":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.0},"133":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":26,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"305":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"316":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"316":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.0},"316":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.4142135623730951}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":2.449489742783178},"316":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"316":{"tf":2.0},"98":{"tf":2.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"316":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.0},"316":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"316":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"278":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":22,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"313":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.0},"316":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.0},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":1,"docs":{"117":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"305":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"316":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"188":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"316":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":4,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.0}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"315":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"305":{"tf":1.0}}}},"df":40,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"305":{"tf":3.3166247903554},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"316":{"tf":1.0}}},"7":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"316":{"tf":1.0}}},"5":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"316":{"tf":2.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"190":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":3.4641016151377544},"316":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":3.605551275463989},"318":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"307":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.7320508075688772},"302":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"305":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"315":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"306":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"317":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":2.0},"314":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"314":{"tf":2.0},"316":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"316":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"316":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"316":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":2.0},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"305":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":28,"docs":{"2":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":2.0},"19":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"318":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"316":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.23606797749979},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.4142135623730951},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"306":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":36,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":2.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"318":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":42,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":5.196152422706632},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":256,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"316":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.23606797749979},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"314":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.7320508075688772},"21":{"tf":1.0},"223":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.449489742783178},"316":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":44,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":2.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"313":{"tf":1.0},"317":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"305":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.23606797749979},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"313":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"316":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"188":{"tf":2.0},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":68,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"316":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"215":{"tf":2.0},"220":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.7320508075688772},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"316":{"tf":1.0}}}},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"314":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.23606797749979},"215":{"tf":2.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"121":{"tf":3.0},"122":{"tf":3.0},"123":{"tf":3.0},"124":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"305":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"306":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":15,"docs":{"107":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"305":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":27,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"316":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"316":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"315":{"tf":2.0},"316":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"313":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"315":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":2.449489742783178},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"t":{"df":6,"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}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"243":{"tf":1.0},"249":{"tf":1.4142135623730951}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951},"243":{"tf":1.0},"251":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"306":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":2.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":2.8284271247461903},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.23606797749979}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.23606797749979},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.23606797749979},"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"u":{"a":{"df":55,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"314":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"313":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":133,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"241":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"316":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"243":{"tf":1.0},"253":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":2.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":3.3166247903554},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"316":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":8,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":4.0},"317":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"304":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":84,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.449489742783178},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0}},"e":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"314":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":2.0},"243":{"tf":1.0},"256":{"tf":2.0},"270":{"tf":1.7320508075688772}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":14,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"2":{"tf":1.0},"292":{"tf":2.449489742783178},"293":{"tf":2.8284271247461903},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"299":{"tf":2.0},"300":{"tf":2.0},"301":{"tf":1.4142135623730951},"302":{"tf":2.449489742783178},"303":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"316":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"318":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"317":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.7320508075688772}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"305":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"316":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":2.0},"317":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"190":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}},"df":1,"docs":{"305":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"316":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"317":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.4142135623730951},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"316":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.23606797749979},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.23606797749979},"316":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.7320508075688772},"316":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":34,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"df":26,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":2.0},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"305":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"316":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":2.0},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.4142135623730951},"313":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":2.0},"132":{"tf":3.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"316":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.23606797749979},"316":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":16,"docs":{"222":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":2.449489742783178},"316":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"316":{"tf":2.0},"98":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"316":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.23606797749979},"316":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"316":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.0},"278":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":22,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.7320508075688772},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":2.0},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":2.0}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"313":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"303":{"tf":1.0},"306":{"tf":1.7320508075688772},"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.7320508075688772},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.23606797749979},"316":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.23606797749979},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":1,"docs":{"117":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"305":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"316":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"188":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"316":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}},"df":4,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"315":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"305":{"tf":1.0}}}},"df":40,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"305":{"tf":3.3166247903554},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"316":{"tf":1.0}}},"7":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"316":{"tf":1.0}}},"5":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"316":{"tf":2.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":3.4641016151377544},"316":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.7320508075688772},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":3.605551275463989},"318":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"307":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"305":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"title":{"root":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"246":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"61":{"tf":1.0}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"243":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"273":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"105":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"107":{"tf":1.0},"156":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"257":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"303":{"tf":1.0},"309":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"158":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"197":{"tf":1.0},"272":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"216":{"tf":1.0},"284":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"300":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"175":{"tf":1.0},"220":{"tf":1.0},"247":{"tf":1.0},"304":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"217":{"tf":1.0},"283":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"278":{"tf":1.0}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"293":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"250":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"251":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"252":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":2,"docs":{"155":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"181":{"tf":1.0},"219":{"tf":1.0},"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"163":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"295":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"64":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"280":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"244":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"190":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"275":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"235":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"301":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":4,"docs":{"111":{"tf":1.0},"162":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"232":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":30,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"291":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"186":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"200":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/en/searchindex.json b/en/searchindex.json index 0b5c01c..7abc0c2 100644 --- a/en/searchindex.json +++ b/en/searchindex.json @@ -1 +1 @@ -{"doc_urls":["introduction.html#introduction","introduction.html#features","introduction.html#hackable","introduction.html#fast","introduction.html#minimalist","introduction.html#other-features","quickstart.html#quickstart","install.html#install","install.html#community-maintained-repositories","install.html#arch-linux","install.html#void-linux","install.html#nixos","install.html#macos","install.html#freebsd","install.html#netbsd","install.html#direct-download","install.html#from--cratesio","install.html#build-from-source","install.html#android","install.html#termux","post-install.html#post-install","post-install.html#create-the-customizable-config-file","post-install.html#run","configuration.html#configuration","configuration.html#how-config-is-loaded","configuration.html#config","general-config.html#general-config","general-config.html#enable_mouse","general-config.html#show_hidden","general-config.html#read_only","general-config.html#disable_recover_mode","general-config.html#cursorformat","general-config.html#cursorstyle","general-config.html#initial_layout","general-config.html#initial_mode","general-config.html#initial_sorting","general-config.html#tablestyle","general-config.html#tablecol_spacing","general-config.html#tablecol_widths","general-config.html#tableheaderheight","general-config.html#tableheaderstyle","general-config.html#tableheadercols","general-config.html#tablerowheight","general-config.html#tablerowstyle","general-config.html#tablerowcols","general-config.html#tabletree","modes.html#modes","modes.html#builtin","modes.html#custom","modes.html#mode","modes.html#name","modes.html#help","modes.html#extra_help","modes.html#key_bindings","modes.html#key-bindings","modes.html#on_key","modes.html#on_alphabet","modes.html#on_number","modes.html#on_special_character","modes.html#default","modes.html#key","modes.html#action","modes.html#help","modes.html#messages","modes.html#tutorial-adding-a-new-mode","message.html#message","message.html#format","message.html#full-list-of-messages","message.html#explorepwd","message.html#explorepwdasync","message.html#exploreparentsasync","message.html#refresh","message.html#clearscreen","message.html#focusnext","message.html#-focusnextbyrelativeindex--int-","message.html#focusnextbyrelativeindexfrominput","message.html#focusprevious","message.html#-focuspreviousbyrelativeindex--int-","message.html#focuspreviousbyrelativeindexfrominput","message.html#focusfirst","message.html#focuslast","message.html#-focuspath--string-","message.html#focuspathfrominput","message.html#-focusbyindex--int-","message.html#focusbyindexfrominput","message.html#-focusbyfilename--string-","message.html#-changedirectory--string-","message.html#enter","message.html#back","message.html#lastvisitedpath","message.html#nextvisitedpath","message.html#followsymlink","message.html#-bufferinput--string-","message.html#bufferinputfromkey","message.html#-setinputbuffer--string-","message.html#removeinputbufferlastcharacter","message.html#removeinputbufferlastword","message.html#resetinputbuffer","message.html#-switchmode--string-","message.html#-switchmodebuiltin--string-","message.html#-switchmodecustom--string-","message.html#popmode","message.html#-switchlayout--string-","message.html#-switchlayoutbuiltin--string-","message.html#-switchlayoutcustom--string-","message.html#-call--string-","message.html#-callsilently--string-","message.html#-calllua--string-","message.html#-callluasilently--string-","message.html#-bashexec--string-","message.html#-bashexecsilently--string-","message.html#select","message.html#selectall","message.html#-selectpath--string-","message.html#unselect","message.html#unselectall","message.html#-unselectpath--string-","message.html#toggleselection","message.html#toggleselectall","message.html#-toggleselectionbypath--string-","message.html#clearselection","message.html#-addnodefilter---filter---filter--input--string-","message.html#-removenodefilter---filter---filter--input--string-","message.html#-togglenodefilter---filter---filter--input--string-","message.html#-addnodefilterfrominput---filter--","message.html#-removenodefilterfrominput---filter--","message.html#removelastnodefilter","message.html#resetnodefilters","message.html#clearnodefilters","message.html#-addnodesorter---sorter---sorter--reverse--bool--","message.html#-removenodesorter---sorter--","message.html#-reversenodesorter---sorter--","message.html#-togglenodesorter---sorter---sorter--reverse--bool--","message.html#reversenodesorters","message.html#removelastnodesorter","message.html#resetnodesorters","message.html#clearnodesorters","message.html#enablemouse","message.html#disablemouse","message.html#togglemouse","message.html#-startfifo--string-","message.html#stopfifo","message.html#-togglefifo--string-","message.html#-loginfo--string-","message.html#-logsuccess--string-","message.html#-logwarning--string-","message.html#-logerror--string-","message.html#quit","message.html#printpwdandquit","message.html#printfocuspathandquit","message.html#printselectionandquit","message.html#printresultandquit","message.html#printappstateandquit","message.html#-debug--string-","message.html#terminate","message.html#lua-function-calls","message.html#calllua-argument","message.html#version","message.html#config","message.html#pwd","message.html#focused_node","message.html#directory_buffer","message.html#selection","message.html#mode","message.html#layout","message.html#input_buffer","message.html#pid","message.html#session_path","message.html#explorer_config","message.html#history","message.html#last_modes","message.html#node","message.html#parent","message.html#relative_path","message.html#absolute_path","message.html#extension","message.html#is_symlink","message.html#is_broken","message.html#is_dir","message.html#is_file","message.html#is_readonly","message.html#mime_essence","message.html#size","message.html#human_size","message.html#permissions","message.html#canonical","message.html#symlink","message.html#example","message.html#environment-variables-and-pipes","message.html#environment-variables","message.html#example","layouts.html#layouts","layouts.html#builtin","layouts.html#default","layouts.html#no_help","layouts.html#no_selection","layouts.html#no_help_no_selection","layouts.html#custom","layouts.html#layout","layouts.html#nothing","layouts.html#table","layouts.html#inputandlogs","layouts.html#selection","layouts.html#helpmenu","layouts.html#sortandfilter","layouts.html#horizontal","layouts.html#vertical","layouts.html#layout-config","layouts.html#margin","layouts.html#horizontal_margin","layouts.html#vertical_margin","layouts.html#constraints","layouts.html#constraint","layouts.html#splits","layouts.html#example","node_types.html#node-types","node_types.html#directory","node_types.html#file","node_types.html#symlink","node_types.html#mime_essence","node_types.html#extension","node_types.html#special","node_types.html#nodetype-config","node_types.html#meta","style.html#style","style.html#fg","style.html#bg","style.html#add_modifiers","style.html#sub_modifiers","style.html#color","style.html#modifier","style.html#example","sorting.html#sorting","sorting.html#node-sorter-applicable","sorting.html#sorter","sorting.html#reverse","sorting.html#example","filtering.html#filtering","filtering.html#node-filter-applicable","filtering.html#filter","filtering.html#input","filtering.html#example","column-renderer.html#column-renderer","column-renderer.html#table-renderer-argument","column-renderer.html#parent","column-renderer.html#relative_path","column-renderer.html#absolute_path","column-renderer.html#extension","column-renderer.html#is_symlink","column-renderer.html#is_broken","column-renderer.html#is_dir","column-renderer.html#is_file","column-renderer.html#is_readonly","column-renderer.html#mime_essence","column-renderer.html#size","column-renderer.html#human_size","column-renderer.html#permissions","column-renderer.html#canonical","column-renderer.html#symlink","column-renderer.html#index","column-renderer.html#relative_index","column-renderer.html#is_before_focus","column-renderer.html#is_after_focus","column-renderer.html#tree","column-renderer.html#prefix","column-renderer.html#suffix","column-renderer.html#is_selected","column-renderer.html#is_focused","column-renderer.html#total","column-renderer.html#meta","column-renderer.html#permission","column-renderer.html#resolved-node-metadata","column-renderer.html#example","default-key-bindings.html#default-key-bindings","default-key-bindings.html#default","default-key-bindings.html#recover","default-key-bindings.html#filter","default-key-bindings.html#number","default-key-bindings.html#go-to","default-key-bindings.html#search","default-key-bindings.html#selection-ops","default-key-bindings.html#action-to","default-key-bindings.html#create","default-key-bindings.html#create-file","default-key-bindings.html#create-directory","default-key-bindings.html#rename","default-key-bindings.html#delete","default-key-bindings.html#sort","default-key-bindings.html#filter","default-key-bindings.html#relative-path-does-contain","default-key-bindings.html#relative-path-does-not-contain","default-key-bindings.html#switch-layout","plugin.html#plugin","installing-plugins.html#installing-plugins","writing-plugins.html#writing-plugins","writing-plugins.html#naming","writing-plugins.html#structure","writing-plugins.html#readmemd","writing-plugins.html#srcinitlua","writing-plugins.html#publishing","writing-plugins.html#examples","awesome-plugins.html#awesome-plugins","awesome-plugins.html#categories","awesome-plugins.html#extension","awesome-plugins.html#integration","awesome-plugins.html#theme","integration.html#integration","awesome-integrations.html#awesome-integrations","awesome-integrations.html#categories","awesome-integrations.html#editor","awesome-integrations.html#shell","awesome-integrations.html#security-tools","todo.html#todo","alternatives.html#alternatives","upgrade-guide.html#upgrade-guide","upgrade-guide.html#instructions","community.html#community","contribute.html#backers"],"index":{"documentStore":{"docInfo":{"0":{"body":64,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":3,"breadcrumbs":4,"title":2},"100":{"body":14,"breadcrumbs":4,"title":2},"101":{"body":7,"breadcrumbs":3,"title":1},"102":{"body":21,"breadcrumbs":4,"title":2},"103":{"body":14,"breadcrumbs":4,"title":2},"104":{"body":14,"breadcrumbs":4,"title":2},"105":{"body":43,"breadcrumbs":4,"title":2},"106":{"body":28,"breadcrumbs":4,"title":2},"107":{"body":28,"breadcrumbs":4,"title":2},"108":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":27,"breadcrumbs":4,"title":2},"11":{"body":7,"breadcrumbs":3,"title":1},"110":{"body":23,"breadcrumbs":4,"title":2},"111":{"body":5,"breadcrumbs":3,"title":1},"112":{"body":5,"breadcrumbs":3,"title":1},"113":{"body":14,"breadcrumbs":4,"title":2},"114":{"body":5,"breadcrumbs":3,"title":1},"115":{"body":5,"breadcrumbs":3,"title":1},"116":{"body":14,"breadcrumbs":4,"title":2},"117":{"body":6,"breadcrumbs":3,"title":1},"118":{"body":6,"breadcrumbs":3,"title":1},"119":{"body":15,"breadcrumbs":4,"title":2},"12":{"body":20,"breadcrumbs":3,"title":1},"120":{"body":4,"breadcrumbs":3,"title":1},"121":{"body":26,"breadcrumbs":7,"title":5},"122":{"body":23,"breadcrumbs":7,"title":5},"123":{"body":24,"breadcrumbs":7,"title":5},"124":{"body":17,"breadcrumbs":4,"title":2},"125":{"body":17,"breadcrumbs":4,"title":2},"126":{"body":6,"breadcrumbs":3,"title":1},"127":{"body":8,"breadcrumbs":3,"title":1},"128":{"body":5,"breadcrumbs":3,"title":1},"129":{"body":26,"breadcrumbs":7,"title":5},"13":{"body":9,"breadcrumbs":3,"title":1},"130":{"body":14,"breadcrumbs":4,"title":2},"131":{"body":14,"breadcrumbs":4,"title":2},"132":{"body":24,"breadcrumbs":7,"title":5},"133":{"body":5,"breadcrumbs":3,"title":1},"134":{"body":6,"breadcrumbs":3,"title":1},"135":{"body":8,"breadcrumbs":3,"title":1},"136":{"body":5,"breadcrumbs":3,"title":1},"137":{"body":4,"breadcrumbs":3,"title":1},"138":{"body":4,"breadcrumbs":3,"title":1},"139":{"body":4,"breadcrumbs":3,"title":1},"14":{"body":8,"breadcrumbs":3,"title":1},"140":{"body":18,"breadcrumbs":4,"title":2},"141":{"body":7,"breadcrumbs":3,"title":1},"142":{"body":14,"breadcrumbs":4,"title":2},"143":{"body":16,"breadcrumbs":4,"title":2},"144":{"body":18,"breadcrumbs":4,"title":2},"145":{"body":16,"breadcrumbs":4,"title":2},"146":{"body":16,"breadcrumbs":4,"title":2},"147":{"body":6,"breadcrumbs":3,"title":1},"148":{"body":5,"breadcrumbs":3,"title":1},"149":{"body":12,"breadcrumbs":3,"title":1},"15":{"body":34,"breadcrumbs":4,"title":2},"150":{"body":9,"breadcrumbs":3,"title":1},"151":{"body":11,"breadcrumbs":3,"title":1},"152":{"body":13,"breadcrumbs":3,"title":1},"153":{"body":19,"breadcrumbs":4,"title":2},"154":{"body":8,"breadcrumbs":3,"title":1},"155":{"body":31,"breadcrumbs":5,"title":3},"156":{"body":27,"breadcrumbs":4,"title":2},"157":{"body":7,"breadcrumbs":3,"title":1},"158":{"body":2,"breadcrumbs":3,"title":1},"159":{"body":5,"breadcrumbs":3,"title":1},"16":{"body":12,"breadcrumbs":3,"title":1},"160":{"body":6,"breadcrumbs":3,"title":1},"161":{"body":1,"breadcrumbs":3,"title":1},"162":{"body":7,"breadcrumbs":3,"title":1},"163":{"body":4,"breadcrumbs":3,"title":1},"164":{"body":4,"breadcrumbs":3,"title":1},"165":{"body":5,"breadcrumbs":3,"title":1},"166":{"body":5,"breadcrumbs":3,"title":1},"167":{"body":4,"breadcrumbs":3,"title":1},"168":{"body":1,"breadcrumbs":3,"title":1},"169":{"body":1,"breadcrumbs":3,"title":1},"17":{"body":28,"breadcrumbs":4,"title":2},"170":{"body":6,"breadcrumbs":3,"title":1},"171":{"body":19,"breadcrumbs":3,"title":1},"172":{"body":5,"breadcrumbs":3,"title":1},"173":{"body":9,"breadcrumbs":3,"title":1},"174":{"body":8,"breadcrumbs":3,"title":1},"175":{"body":4,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":6,"breadcrumbs":3,"title":1},"178":{"body":5,"breadcrumbs":3,"title":1},"179":{"body":5,"breadcrumbs":3,"title":1},"18":{"body":0,"breadcrumbs":3,"title":1},"180":{"body":5,"breadcrumbs":3,"title":1},"181":{"body":9,"breadcrumbs":3,"title":1},"182":{"body":10,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":5,"breadcrumbs":3,"title":1},"185":{"body":19,"breadcrumbs":3,"title":1},"186":{"body":20,"breadcrumbs":3,"title":1},"187":{"body":48,"breadcrumbs":3,"title":1},"188":{"body":44,"breadcrumbs":5,"title":3},"189":{"body":131,"breadcrumbs":4,"title":2},"19":{"body":51,"breadcrumbs":3,"title":1},"190":{"body":35,"breadcrumbs":3,"title":1},"191":{"body":30,"breadcrumbs":3,"title":1},"192":{"body":17,"breadcrumbs":3,"title":1},"193":{"body":7,"breadcrumbs":3,"title":1},"194":{"body":6,"breadcrumbs":3,"title":1},"195":{"body":6,"breadcrumbs":3,"title":1},"196":{"body":9,"breadcrumbs":3,"title":1},"197":{"body":22,"breadcrumbs":3,"title":1},"198":{"body":21,"breadcrumbs":3,"title":1},"199":{"body":4,"breadcrumbs":3,"title":1},"2":{"body":24,"breadcrumbs":2,"title":1},"20":{"body":8,"breadcrumbs":5,"title":2},"200":{"body":8,"breadcrumbs":3,"title":1},"201":{"body":7,"breadcrumbs":3,"title":1},"202":{"body":6,"breadcrumbs":3,"title":1},"203":{"body":10,"breadcrumbs":3,"title":1},"204":{"body":12,"breadcrumbs":3,"title":1},"205":{"body":12,"breadcrumbs":3,"title":1},"206":{"body":12,"breadcrumbs":3,"title":1},"207":{"body":9,"breadcrumbs":4,"title":2},"208":{"body":6,"breadcrumbs":3,"title":1},"209":{"body":9,"breadcrumbs":3,"title":1},"21":{"body":59,"breadcrumbs":7,"title":4},"210":{"body":9,"breadcrumbs":3,"title":1},"211":{"body":7,"breadcrumbs":3,"title":1},"212":{"body":42,"breadcrumbs":3,"title":1},"213":{"body":9,"breadcrumbs":3,"title":1},"214":{"body":18,"breadcrumbs":3,"title":1},"215":{"body":50,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":4,"title":1},"217":{"body":16,"breadcrumbs":4,"title":1},"218":{"body":12,"breadcrumbs":4,"title":1},"219":{"body":43,"breadcrumbs":4,"title":1},"22":{"body":1,"breadcrumbs":4,"title":1},"220":{"body":19,"breadcrumbs":4,"title":1},"221":{"body":20,"breadcrumbs":4,"title":1},"222":{"body":8,"breadcrumbs":5,"title":2},"223":{"body":25,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":3,"title":1},"225":{"body":5,"breadcrumbs":3,"title":1},"226":{"body":5,"breadcrumbs":3,"title":1},"227":{"body":6,"breadcrumbs":3,"title":1},"228":{"body":6,"breadcrumbs":3,"title":1},"229":{"body":26,"breadcrumbs":3,"title":1},"23":{"body":47,"breadcrumbs":2,"title":1},"230":{"body":12,"breadcrumbs":3,"title":1},"231":{"body":12,"breadcrumbs":3,"title":1},"232":{"body":52,"breadcrumbs":3,"title":1},"233":{"body":5,"breadcrumbs":5,"title":3},"234":{"body":32,"breadcrumbs":3,"title":1},"235":{"body":5,"breadcrumbs":3,"title":1},"236":{"body":17,"breadcrumbs":3,"title":1},"237":{"body":51,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":5,"title":3},"239":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":22,"breadcrumbs":3,"title":2},"240":{"body":4,"breadcrumbs":3,"title":1},"241":{"body":12,"breadcrumbs":3,"title":1},"242":{"body":36,"breadcrumbs":5,"title":2},"243":{"body":31,"breadcrumbs":6,"title":3},"244":{"body":5,"breadcrumbs":4,"title":1},"245":{"body":9,"breadcrumbs":4,"title":1},"246":{"body":8,"breadcrumbs":4,"title":1},"247":{"body":4,"breadcrumbs":4,"title":1},"248":{"body":5,"breadcrumbs":4,"title":1},"249":{"body":6,"breadcrumbs":4,"title":1},"25":{"body":13,"breadcrumbs":2,"title":1},"250":{"body":5,"breadcrumbs":4,"title":1},"251":{"body":5,"breadcrumbs":4,"title":1},"252":{"body":5,"breadcrumbs":4,"title":1},"253":{"body":9,"breadcrumbs":4,"title":1},"254":{"body":10,"breadcrumbs":4,"title":1},"255":{"body":6,"breadcrumbs":4,"title":1},"256":{"body":5,"breadcrumbs":4,"title":1},"257":{"body":19,"breadcrumbs":4,"title":1},"258":{"body":20,"breadcrumbs":4,"title":1},"259":{"body":6,"breadcrumbs":4,"title":1},"26":{"body":8,"breadcrumbs":5,"title":2},"260":{"body":9,"breadcrumbs":4,"title":1},"261":{"body":7,"breadcrumbs":4,"title":1},"262":{"body":6,"breadcrumbs":4,"title":1},"263":{"body":7,"breadcrumbs":4,"title":1},"264":{"body":5,"breadcrumbs":4,"title":1},"265":{"body":5,"breadcrumbs":4,"title":1},"266":{"body":5,"breadcrumbs":4,"title":1},"267":{"body":6,"breadcrumbs":4,"title":1},"268":{"body":5,"breadcrumbs":4,"title":1},"269":{"body":8,"breadcrumbs":4,"title":1},"27":{"body":8,"breadcrumbs":4,"title":1},"270":{"body":21,"breadcrumbs":4,"title":1},"271":{"body":11,"breadcrumbs":6,"title":3},"272":{"body":23,"breadcrumbs":4,"title":1},"273":{"body":25,"breadcrumbs":6,"title":3},"274":{"body":79,"breadcrumbs":4,"title":1},"275":{"body":8,"breadcrumbs":4,"title":1},"276":{"body":27,"breadcrumbs":4,"title":1},"277":{"body":32,"breadcrumbs":4,"title":1},"278":{"body":16,"breadcrumbs":4,"title":1},"279":{"body":37,"breadcrumbs":4,"title":1},"28":{"body":7,"breadcrumbs":4,"title":1},"280":{"body":17,"breadcrumbs":5,"title":2},"281":{"body":29,"breadcrumbs":4,"title":1},"282":{"body":14,"breadcrumbs":4,"title":1},"283":{"body":24,"breadcrumbs":5,"title":2},"284":{"body":24,"breadcrumbs":5,"title":2},"285":{"body":23,"breadcrumbs":4,"title":1},"286":{"body":13,"breadcrumbs":4,"title":1},"287":{"body":58,"breadcrumbs":4,"title":1},"288":{"body":27,"breadcrumbs":4,"title":1},"289":{"body":24,"breadcrumbs":6,"title":3},"29":{"body":16,"breadcrumbs":4,"title":1},"290":{"body":24,"breadcrumbs":6,"title":3},"291":{"body":19,"breadcrumbs":5,"title":2},"292":{"body":18,"breadcrumbs":2,"title":1},"293":{"body":44,"breadcrumbs":5,"title":2},"294":{"body":11,"breadcrumbs":5,"title":2},"295":{"body":14,"breadcrumbs":4,"title":1},"296":{"body":12,"breadcrumbs":4,"title":1},"297":{"body":4,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":4,"title":1},"299":{"body":23,"breadcrumbs":4,"title":1},"3":{"body":59,"breadcrumbs":2,"title":1},"30":{"body":19,"breadcrumbs":4,"title":1},"300":{"body":6,"breadcrumbs":4,"title":1},"301":{"body":16,"breadcrumbs":5,"title":2},"302":{"body":3,"breadcrumbs":4,"title":1},"303":{"body":22,"breadcrumbs":4,"title":1},"304":{"body":84,"breadcrumbs":4,"title":1},"305":{"body":20,"breadcrumbs":4,"title":1},"306":{"body":14,"breadcrumbs":2,"title":1},"307":{"body":14,"breadcrumbs":5,"title":2},"308":{"body":4,"breadcrumbs":4,"title":1},"309":{"body":3,"breadcrumbs":4,"title":1},"31":{"body":10,"breadcrumbs":4,"title":1},"310":{"body":1,"breadcrumbs":4,"title":1},"311":{"body":2,"breadcrumbs":5,"title":2},"312":{"body":81,"breadcrumbs":2,"title":1},"313":{"body":25,"breadcrumbs":2,"title":1},"314":{"body":142,"breadcrumbs":4,"title":2},"315":{"body":817,"breadcrumbs":3,"title":1},"316":{"body":40,"breadcrumbs":2,"title":1},"317":{"body":69,"breadcrumbs":2,"title":1},"32":{"body":4,"breadcrumbs":4,"title":1},"33":{"body":8,"breadcrumbs":4,"title":1},"34":{"body":8,"breadcrumbs":4,"title":1},"35":{"body":12,"breadcrumbs":4,"title":1},"36":{"body":5,"breadcrumbs":4,"title":1},"37":{"body":7,"breadcrumbs":4,"title":1},"38":{"body":8,"breadcrumbs":4,"title":1},"39":{"body":6,"breadcrumbs":4,"title":1},"4":{"body":42,"breadcrumbs":2,"title":1},"40":{"body":5,"breadcrumbs":4,"title":1},"41":{"body":18,"breadcrumbs":4,"title":1},"42":{"body":7,"breadcrumbs":4,"title":1},"43":{"body":5,"breadcrumbs":4,"title":1},"44":{"body":23,"breadcrumbs":4,"title":1},"45":{"body":62,"breadcrumbs":4,"title":1},"46":{"body":35,"breadcrumbs":3,"title":1},"47":{"body":38,"breadcrumbs":3,"title":1},"48":{"body":37,"breadcrumbs":3,"title":1},"49":{"body":8,"breadcrumbs":3,"title":1},"5":{"body":256,"breadcrumbs":2,"title":1},"50":{"body":7,"breadcrumbs":3,"title":1},"51":{"body":11,"breadcrumbs":3,"title":1},"52":{"body":13,"breadcrumbs":3,"title":1},"53":{"body":7,"breadcrumbs":3,"title":1},"54":{"body":24,"breadcrumbs":4,"title":2},"55":{"body":9,"breadcrumbs":3,"title":1},"56":{"body":12,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":13,"breadcrumbs":3,"title":1},"59":{"body":16,"breadcrumbs":3,"title":1},"6":{"body":12,"breadcrumbs":2,"title":1},"60":{"body":46,"breadcrumbs":3,"title":1},"61":{"body":6,"breadcrumbs":3,"title":1},"62":{"body":8,"breadcrumbs":3,"title":1},"63":{"body":9,"breadcrumbs":3,"title":1},"64":{"body":134,"breadcrumbs":6,"title":4},"65":{"body":30,"breadcrumbs":3,"title":1},"66":{"body":47,"breadcrumbs":3,"title":1},"67":{"body":0,"breadcrumbs":5,"title":3},"68":{"body":14,"breadcrumbs":3,"title":1},"69":{"body":34,"breadcrumbs":3,"title":1},"7":{"body":44,"breadcrumbs":3,"title":1},"70":{"body":35,"breadcrumbs":3,"title":1},"71":{"body":24,"breadcrumbs":3,"title":1},"72":{"body":4,"breadcrumbs":3,"title":1},"73":{"body":5,"breadcrumbs":3,"title":1},"74":{"body":20,"breadcrumbs":4,"title":2},"75":{"body":12,"breadcrumbs":3,"title":1},"76":{"body":5,"breadcrumbs":3,"title":1},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":12,"breadcrumbs":3,"title":1},"79":{"body":5,"breadcrumbs":3,"title":1},"8":{"body":9,"breadcrumbs":5,"title":3},"80":{"body":5,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":4,"title":2},"82":{"body":7,"breadcrumbs":3,"title":1},"83":{"body":18,"breadcrumbs":4,"title":2},"84":{"body":10,"breadcrumbs":3,"title":1},"85":{"body":17,"breadcrumbs":4,"title":2},"86":{"body":16,"breadcrumbs":4,"title":2},"87":{"body":8,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":3,"title":1},"89":{"body":6,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":6,"breadcrumbs":3,"title":1},"91":{"body":8,"breadcrumbs":3,"title":1},"92":{"body":15,"breadcrumbs":4,"title":2},"93":{"body":9,"breadcrumbs":3,"title":1},"94":{"body":24,"breadcrumbs":4,"title":2},"95":{"body":7,"breadcrumbs":3,"title":1},"96":{"body":7,"breadcrumbs":3,"title":1},"97":{"body":9,"breadcrumbs":3,"title":1},"98":{"body":22,"breadcrumbs":4,"title":2},"99":{"body":14,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"xplr is a terminal UI based file explorer that aims to increase our terminal productivity by being a flexible, interactive orchestrator for the ever growing awesome command-line utilities that work with the file-system. To achieve its goal, xplr strives to be a fast, minimal and more importantly, hackable file explorer. xplr is not meant to be a replacement for the standard shell commands or the GUI file managers. Rather, it aims to integrate them all and expose an intuitive, scriptable, keyboard controlled, real-time visual interface, also being an ideal candidate for further integration, enabling the users to achieve insane terminal productivity.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Introduction » Features","id":"1","title":"Features"},"10":{"body":"void-templates by shubham","breadcrumbs":"Quickstart » Install » Void Linux","id":"10","title":"Void Linux"},"100":{"body":"YAML: SwitchModeCustom: string Switch to a custom mode . YAML Example: SwitchModeCustom: my_custom_mode Lua Example: { SwitchModeCustom = \"my_custom_mode\" }","breadcrumbs":"Configuration » Message » { SwitchModeCustom = \"string\" }","id":"100","title":"{ SwitchModeCustom = \"string\" }"},"101":{"body":"YAML: PopMode Pop the last mode from the history and switch to it.","breadcrumbs":"Configuration » Message » \"PopMode\"","id":"101","title":"\"PopMode\""},"102":{"body":"YAML: SwitchLayout: string Switch layout . NOTE: To be specific about which layout to switch to, use SwitchLayoutBuiltin or SwitchLayoutCustom instead. YAML Example: SwitchLayout: default Lua Example: { SwitchLayout = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayout = \"string\" }","id":"102","title":"{ SwitchLayout = \"string\" }"},"103":{"body":"YAML: SwitchLayoutBuiltin: string Switch to a builtin layout . YAML Example: SwitchLayoutBuiltin: default Lua Example: { SwitchLayoutBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutBuiltin = \"string\" }","id":"103","title":"{ SwitchLayoutBuiltin = \"string\" }"},"104":{"body":"YAML: SwitchLayoutCustom: string Switch to a custom layout . YAML Example: SwitchLayoutCustom: my_custom_layout Lua Example: { SwitchLayoutCustom = \"my_custom_layout\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutCustom = \"string\" }","id":"104","title":"{ SwitchLayoutCustom = \"string\" }"},"105":{"body":"YAML: Call: string Call a shell command with the given arguments. Note that the arguments will be shell-escaped. So to read the variables, the -c option of the shell can be used. You may need to pass ExplorePwd depening on the expectation. YAML Example: Call: { command: bash, args: [\"-c\", \"read -p test\"] } Lua Example: { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } }","breadcrumbs":"Configuration » Message » { Call = \"string\" }","id":"105","title":"{ Call = \"string\" }"},"106":{"body":"YAML: CallSilently: string Like Call but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallSilently: { command: tput, args: [\"bell\"] } Lua Example: { CallSilently = { command = \"tput\", args = { \"bell\" } } }","breadcrumbs":"Configuration » Message » { CallSilently = \"string\" }","id":"106","title":"{ CallSilently = \"string\" }"},"107":{"body":"YAML: CallLua: string Call a Lua function. A CallLuaArg object will be passed to the function as argument. The function can optionally return a list of messages for xplr to handle after the executing the function. YAML Example: CallLua: custom.some_custom_funtion Lua Example: { CallLua = \"custom.some_custom_funtion\" }","breadcrumbs":"Configuration » Message » { CallLua = \"string\" }","id":"107","title":"{ CallLua = \"string\" }"},"108":{"body":"YAML: CallLuaSilently: string Like CallLua but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallLuaSilently: custom.some_custom_function Lua Example: { CallLuaSilently = \"custom.some_custom_function\" }","breadcrumbs":"Configuration » Message » { CallLuaSilently = \"string\" }","id":"108","title":"{ CallLuaSilently = \"string\" }"},"109":{"body":"YAML: BashExec: string An alias to Call: {command: bash, args: [\"-c\", \"{string}\"], silent: false} where {string} is the given value. YAML Example: BashExec: \"read -p test\" Lua Example: { BashExec = \"read -p test\" }","breadcrumbs":"Configuration » Message » { BashExec = \"string\" }","id":"109","title":"{ BashExec = \"string\" }"},"11":{"body":"Nixpkgs nix-env -f https://github.com/NixOS/nixpkgs/tarball/master -iA xplr","breadcrumbs":"Quickstart » Install » Nix(OS)","id":"11","title":"Nix(OS)"},"110":{"body":"YAML: BashExecSilently(String) Like BashExec but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: BashExecSilently: \"tput bell\" Lua Example: { BashExecSilently = \"tput bell\" }","breadcrumbs":"Configuration » Message » { BashExecSilently = \"string\" }","id":"110","title":"{ BashExecSilently = \"string\" }"},"111":{"body":"YAML: Select Select the focused node.","breadcrumbs":"Configuration » Message » \"Select\"","id":"111","title":"\"Select\""},"112":{"body":"YAML: SelectAll Select all the visible nodes.","breadcrumbs":"Configuration » Message » \"SelectAll\"","id":"112","title":"\"SelectAll\""},"113":{"body":"YAML: SelectPath: string Select the given path. YAML Example: SelectPath: /path/to/file Lua Example: { SelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { SelectPath = \"string\" }","id":"113","title":"{ SelectPath = \"string\" }"},"114":{"body":"YAML: UnSelect Unselect the focused node.","breadcrumbs":"Configuration » Message » \"UnSelect\"","id":"114","title":"\"UnSelect\""},"115":{"body":"YAML: UnSelectAll Unselect all the visible nodes.","breadcrumbs":"Configuration » Message » \"UnSelectAll\"","id":"115","title":"\"UnSelectAll\""},"116":{"body":"YAML: UnSelectPath: string UnSelect the given path. YAML Example: UnSelectPath: /path/to/file Lua Example: { UnSelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { UnSelectPath = \"string)\" }","id":"116","title":"{ UnSelectPath = \"string)\" }"},"117":{"body":"YAML: ToggleSelection Toggle selection on the focused node.","breadcrumbs":"Configuration » Message » \"ToggleSelection\"","id":"117","title":"\"ToggleSelection\""},"118":{"body":"YAML: ToggleSelectAll Toggle between select all and unselect all.","breadcrumbs":"Configuration » Message » \"ToggleSelectAll\"","id":"118","title":"\"ToggleSelectAll\""},"119":{"body":"YAML: ToggleSelectionByPath: string Toggle selection by file path. YAML Example: ToggleSelectionByPath: /path/to/file Lua Example: { ToggleSelectionByPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { ToggleSelectionByPath = \"string\" }","id":"119","title":"{ ToggleSelectionByPath = \"string\" }"},"12":{"body":"MacPorts sudo port selfupdate\nsudo port install xplr Homebrew Stable branch: brew install xplr HEAD branch: brew install --head xplr","breadcrumbs":"Quickstart » Install » macOS","id":"12","title":"macOS"},"120":{"body":"YAML: ClearSelection Clear the selection.","breadcrumbs":"Configuration » Message » \"ClearSelection\"","id":"120","title":"\"ClearSelection\""},"121":{"body":"YAML: AddNodeFilter: { filter = Filter, input = string } Add a filter to exclude nodes while exploring directories. YAML Example: AddNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { AddNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { AddNodeFilter = { filter = Filter , input = \"string\" }","id":"121","title":"{ AddNodeFilter = { filter = Filter , input = \"string\" }"},"122":{"body":"YAML: RemoveNodeFilter: { filter = Filter, input = string Remove an existing filter . YAML Example: RemoveNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { RemoveNodeFilter: { filter: \"RelativePathDoesStartWith\", input: \"foo\" } }","breadcrumbs":"Configuration » Message » { RemoveNodeFilter = { filter = Filter , input = \"string\" }","id":"122","title":"{ RemoveNodeFilter = { filter = Filter , input = \"string\" }"},"123":{"body":"YAML: ToggleNodeFilter: { filter = Filter, input = string } Remove a filter if it exists, else, add a it. YAML Example: ToggleNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { ToggleNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { ToggleNodeFilter = { filter = Filter , input = \"string\" }","id":"123","title":"{ ToggleNodeFilter = { filter = Filter , input = \"string\" }"},"124":{"body":"YAML: AddNodeFilterFromInput: Filter Add a node filter reading the input from the buffer. YAML Example: AddNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { AddNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { AddNodeFilterFromInput = Filter }","id":"124","title":"{ AddNodeFilterFromInput = Filter }"},"125":{"body":"YAML: RemoveNodeFilterFromInput: Filter Remove a node filter reading the input from the buffer. YAML Example: RemoveNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { RemoveNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { RemoveNodeFilterFromInput = Filter }","id":"125","title":"{ RemoveNodeFilterFromInput = Filter }"},"126":{"body":"YAML: RemoveLastNodeFilter Remove the last node filter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeFilter\"","id":"126","title":"\"RemoveLastNodeFilter\""},"127":{"body":"YAML: ResetNodeFilters Reset the node filters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeFilters\"","id":"127","title":"\"ResetNodeFilters\""},"128":{"body":"YAML: ClearNodeFilters Clear all the node filters .","breadcrumbs":"Configuration » Message » \"ClearNodeFilters\"","id":"128","title":"\"ClearNodeFilters\""},"129":{"body":"YAML: AddNodeSorter: { sorter: Sorter, reverse = bool } Add a sorter to sort nodes while exploring directories. YAML Example: AddNodeSorter: { sorter: ByRelativePath, reverse: false } YAML Example: { AddNodeSorter = { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { AddNodeSorter = { sorter = Sorter , reverse = bool } }","id":"129","title":"{ AddNodeSorter = { sorter = Sorter , reverse = bool } }"},"13":{"body":"ports pkg install xplr Or cd /usr/ports/misc/xplr\nmake install clean","breadcrumbs":"Quickstart » Install » FreeBSD","id":"13","title":"FreeBSD"},"130":{"body":"YAML: RemoveNodeSorter: Sorter Remove an existing sorter . YAML Example: RemoveNodeSorter: ByRelativePath Lua Example: { RemoveNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { RemoveNodeSorter = Sorter }","id":"130","title":"{ RemoveNodeSorter = Sorter }"},"131":{"body":"YAML: ReverseNodeSorter: Sorter Reverse a node sorter . YAML Example: ReverseNodeSorter: ByRelativePath Lua Example: { ReverseNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { ReverseNodeSorter = Sorter }","id":"131","title":"{ ReverseNodeSorter = Sorter }"},"132":{"body":"YAML: ToggleNodeSorter: { sorter: Sorter, reverse = bool } Remove a sorter if it exists, else, add a it. YAML Example: ToggleSorterSorter: {sorter: ByRelativePath, reverse: false } Lua Example: { ToggleSorterSorter: { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { ToggleNodeSorter = { sorter = Sorter , reverse = bool } }","id":"132","title":"{ ToggleNodeSorter = { sorter = Sorter , reverse = bool } }"},"133":{"body":"YAML: ReverseNodeSorters Reverse the node sorters .","breadcrumbs":"Configuration » Message » \"ReverseNodeSorters\"","id":"133","title":"\"ReverseNodeSorters\""},"134":{"body":"YAML: RemoveLastNodeSorter Remove the last node sorter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeSorter\"","id":"134","title":"\"RemoveLastNodeSorter\""},"135":{"body":"YAML: ResetNodeSorters Reset the node sorters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeSorters\"","id":"135","title":"\"ResetNodeSorters\""},"136":{"body":"YAML: ClearNodeSorters Clear all the node sorters .","breadcrumbs":"Configuration » Message » \"ClearNodeSorters\"","id":"136","title":"\"ClearNodeSorters\""},"137":{"body":"YAML: EnableMouse Enable mouse","breadcrumbs":"Configuration » Message » \"EnableMouse\"","id":"137","title":"\"EnableMouse\""},"138":{"body":"YAML: DisableMouse Disable mouse","breadcrumbs":"Configuration » Message » \"DisableMouse\"","id":"138","title":"\"DisableMouse\""},"139":{"body":"YAML: ToggleMouse Toggle mouse","breadcrumbs":"Configuration » Message » \"ToggleMouse\"","id":"139","title":"\"ToggleMouse\""},"14":{"body":"pkgsrc pkgin install xplr Or cd /usr/pkgsrc/sysutils/xplr\nmake install","breadcrumbs":"Quickstart » Install » NetBSD","id":"14","title":"NetBSD"},"140":{"body":"YAML: StartFifo: string Start piping the focused path to the given fifo path YAML Example: StartFifo: /tmp/xplr.fifo Lua Example: { StartFifo = \"/tmp/xplr.fifo }","breadcrumbs":"Configuration » Message » { StartFifo = \"string\" }","id":"140","title":"{ StartFifo = \"string\" }"},"141":{"body":"YAML: StopFifo Close the active fifo and stop piping.","breadcrumbs":"Configuration » Message » \"StopFifo\"","id":"141","title":"\"StopFifo\""},"142":{"body":"YAML: ToggleFifo: string Toggle betwen {Start|Stop}Fifo YAML Example: ToggleFifo: /path/to/fifo Lua Example: { ToggleFifo = \"/path/to/fifo\" }","breadcrumbs":"Configuration » Message » { ToggleFifo = \"string\" }","id":"142","title":"{ ToggleFifo = \"string\" }"},"143":{"body":"YAML: LogInfo: string Log information message. YAML Example: LogInfo: launching satellite Lua Example: { LogInfo = \"launching satellite\" }","breadcrumbs":"Configuration » Message » { LogInfo = \"string\" }","id":"143","title":"{ LogInfo = \"string\" }"},"144":{"body":"YAML: LogSuccess: string Log a success message. YAML Example: LogSuccess: satellite reached destination. Lua Example: { LogSuccess = \"satellite reached destination\" }.","breadcrumbs":"Configuration » Message » { LogSuccess = \"String\" }","id":"144","title":"{ LogSuccess = \"String\" }"},"145":{"body":"YAML: LogWarning: string Log an warning message. YAML Example: LogWarning: satellite is heating Lua Example: { LogWarning = \"satellite is heating\" }","breadcrumbs":"Configuration » Message » { LogWarning = \"string\" }","id":"145","title":"{ LogWarning = \"string\" }"},"146":{"body":"YAML: LogError: string Log an error message. YAML Example: LogError: satellite crashed Lua Example: { LogError = \"satellite crashed\" }","breadcrumbs":"Configuration » Message » { LogError = \"string\" }","id":"146","title":"{ LogError = \"string\" }"},"147":{"body":"YAML: Quit Quit with returncode zero (success).","breadcrumbs":"Configuration » Message » \"Quit\"","id":"147","title":"\"Quit\""},"148":{"body":"YAML: PrintPwdAndQuit Print $PWD and quit.","breadcrumbs":"Configuration » Message » \"PrintPwdAndQuit\"","id":"148","title":"\"PrintPwdAndQuit\""},"149":{"body":"YAML: PrintFocusPathAndQuit Print the path under focus and quit. It can be empty string if there's nothing to focus.","breadcrumbs":"Configuration » Message » \"PrintFocusPathAndQuit\"","id":"149","title":"\"PrintFocusPathAndQuit\""},"15":{"body":"One can directly download the standalone binary from the releases . Currently, the following options are available for direct download: Linux macOS Command-line instructions: platform=\"linux\" # or \"macos\" # Download\nwget https://github.com/sayanarijit/xplr/releases/latest/download/xplr-$platform.tar.gz # Extract\ntar xzvf xplr-$platform.tar.gz # Place in $PATH\nsudo mv xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Direct Download","id":"15","title":"Direct Download"},"150":{"body":"YAML: PrintSelectionAndQuit Print the selected paths and quit. It can be empty is no path is selected.","breadcrumbs":"Configuration » Message » \"PrintSelectionAndQuit\"","id":"150","title":"\"PrintSelectionAndQuit\""},"151":{"body":"YAML: PrintResultAndQuit Print the selected paths if it's not empty, else, print the focused node's path.","breadcrumbs":"Configuration » Message » \"PrintResultAndQuit\"","id":"151","title":"\"PrintResultAndQuit\""},"152":{"body":"YAML: PrintAppStateAndQuit Print the state of application in YAML format. Helpful for debugging or generating the default configuration file.","breadcrumbs":"Configuration » Message » \"PrintAppStateAndQuit\"","id":"152","title":"\"PrintAppStateAndQuit\""},"153":{"body":"YAML: Debug: string Write the application state to a file, without quitting. Also helpful for debugging. YAML Example: Debug: /path/to/file Lua Example: { Debug = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { Debug = \"string\" }","id":"153","title":"{ Debug = \"string\" }"},"154":{"body":"YAML: Terminate Terminate the application with a non-zero return code.","breadcrumbs":"Configuration » Message » \"Terminate\"","id":"154","title":"\"Terminate\""},"155":{"body":"xplr allows users to define lua functions using the xplr.fn.custom Lua API. These functions can be called using messages like CallLua, CallLuaSilently. When called the function receives a special argument that contains some useful information. The function can optionally return a list of messages which will be handled by xplr.","breadcrumbs":"Configuration » Message » Lua Function Calls","id":"155","title":"Lua Function Calls"},"156":{"body":"This is a special argument passed to the lua functions when called using the CallLua, CallLuaSilently messages. It contains the following information: version config pwd focused_node directory_buffer selection mode layout input_buffer pid session_path explorer_config history last_modes","breadcrumbs":"Configuration » Message » CallLua Argument","id":"156","title":"CallLua Argument"},"157":{"body":"Type: string xplr version. Can be used to test compatibility.","breadcrumbs":"Configuration » Message » version","id":"157","title":"version"},"158":{"body":"Type: Config","breadcrumbs":"Configuration » Message » config","id":"158","title":"config"},"159":{"body":"Type: string The present working directory/","breadcrumbs":"Configuration » Message » pwd","id":"159","title":"pwd"},"16":{"body":"Prerequisites: Rust toolchain , gcc make Command-line instructions: cargo install --force xplr","breadcrumbs":"Quickstart » Install » From crates.io","id":"16","title":"From crates.io"},"160":{"body":"Type: nullable Node The node under focus.","breadcrumbs":"Configuration » Message » focused_node","id":"160","title":"focused_node"},"161":{"body":"TODO","breadcrumbs":"Configuration » Message » directory_buffer","id":"161","title":"directory_buffer"},"162":{"body":"Type: list of selected Node s The selected nodes.","breadcrumbs":"Configuration » Message » selection","id":"162","title":"selection"},"163":{"body":"Type: Mode Current mode.","breadcrumbs":"Configuration » Message » mode","id":"163","title":"mode"},"164":{"body":"Type: Layout Current layout.","breadcrumbs":"Configuration » Message » layout","id":"164","title":"layout"},"165":{"body":"Type: nullable string The input buffer.","breadcrumbs":"Configuration » Message » input_buffer","id":"165","title":"input_buffer"},"166":{"body":"Type: integer The xplr session PID.","breadcrumbs":"Configuration » Message » pid","id":"166","title":"pid"},"167":{"body":"Type: string The session path.","breadcrumbs":"Configuration » Message » session_path","id":"167","title":"session_path"},"168":{"body":"TODO","breadcrumbs":"Configuration » Message » explorer_config","id":"168","title":"explorer_config"},"169":{"body":"TODO","breadcrumbs":"Configuration » Message » history","id":"169","title":"history"},"17":{"body":"Prerequisites: git Rust toolchain gcc make Command-line instructions: # Clone the repository\ngit clone https://github.com/sayanarijit/xplr.git\ncd xplr # Build\ncargo build --release --bin xplr # Place in $PATH\nsudo cp target/release/xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Build From Source","id":"17","title":"Build From Source"},"170":{"body":"Type: list of Mode Last modes, not popped yet.","breadcrumbs":"Configuration » Message » last_modes","id":"170","title":"last_modes"},"171":{"body":"A node contains the following fields: parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink","breadcrumbs":"Configuration » Message » Node","id":"171","title":"Node"},"172":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Message » parent","id":"172","title":"parent"},"173":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Message » relative_path","id":"173","title":"relative_path"},"174":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Message » absolute_path","id":"174","title":"absolute_path"},"175":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Message » extension","id":"175","title":"extension"},"176":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Message » is_symlink","id":"176","title":"is_symlink"},"177":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Message » is_broken","id":"177","title":"is_broken"},"178":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Message » is_dir","id":"178","title":"is_dir"},"179":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Message » is_file","id":"179","title":"is_file"},"18":{"body":"","breadcrumbs":"Quickstart » Install » Android","id":"18","title":"Android"},"180":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Message » is_readonly","id":"180","title":"is_readonly"},"181":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Message » mime_essence","id":"181","title":"mime_essence"},"182":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Message » size","id":"182","title":"size"},"183":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Message » human_size","id":"183","title":"human_size"},"184":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Message » permissions","id":"184","title":"permissions"},"185":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Message » canonical","id":"185","title":"canonical"},"186":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Message » symlink","id":"186","title":"symlink"},"187":{"body":"-- Define the function\nxplr.fn.custom.ask_name_and_greet = function(app) print(\"What's your name?\") local name = io.read() local greeting = \"Hello \" .. name .. \"!\" local message = greeting .. \" You are inside \" .. app.pwd return { { LogSuccess = message }, }\nend -- Map the function to a key (space)\nxplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { CallLua = \"custom.ask_name_and_greet\" } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example:","id":"187","title":"Example:"},"188":{"body":"Alternative to CallLua, CallLuaSilently messages that call Lua functions, there are Call, CallSilently, BashExec, BashExecSilently messages that call shell commands. However, unlike the Lua functions, these shell commands have to read the useful information and send messages via environment variables and temporary files called \"pipe\"s. These environment variables and files are only available when a command is being executed. Visit the fzf integration tutorial for example.","breadcrumbs":"Configuration » Message » Environment Variables and Pipes","id":"188","title":"Environment Variables and Pipes"},"189":{"body":"To see the environment variables, invoke the shell by typing :! in default mode and run the following command: env | grep ^XPLR_ You will see something like: XPLR_FOCUS_INDEX=0\nXPLR_MODE=action to\nXPLR_PIPE_SELECTION_OUT=/run/user/1000/xplr/session/122278/pipe/selection_out\nXPLR_INPUT_BUFFER=\nXPLR_PIPE_GLOBAL_HELP_MENU_OUT=/run/user/1000/xplr/session/122278/pipe/global_help_menu_out\nXPLR_PID=122278\nXPLR_PIPE_MSG_IN=/run/user/1000/xplr/session/122278/pipe/msg_in\nXPLR_PIPE_LOGS_OUT=/run/user/1000/xplr/session/122278/pipe/logs_out\nXPLR_PIPE_RESULT_OUT=/run/user/1000/xplr/session/122278/pipe/result_out\nXPLR_PIPE_HISTORY_OUT=/run/user/1000/xplr/session/122278/pipe/history_out\nXPLR_FOCUS_PATH=/home/sayanarijit/Documents/GitHub/xplr/docs/en/book\nXPLR_SESSION_PATH=/run/user/1000/xplr/session/122278\nXPLR_APP_VERSION=0.14.3\nXPLR_PIPE_DIRECTORY_NODES_OUT=/run/user/1000/xplr/session/122278/pipe/directory_nodes_out The environment variables starting with XPLR_PIPE_ are the temporary files called \"pipe\"s. Input pipe Current there is only one input pipe. XPLR_PIPE_MSG_IN Output pipes XPLR_PIPE_*_OUT are the output pipes that contain data which cannot be exposed directly via environment variables, like multi-line string. XPLR_PIPE_SELECTION_OUT XPLR_PIPE_GLOBAL_HELP_MENU_OUT XPLR_PIPE_LOGS_OUT XPLR_PIPE_RESULT_OUT XPLR_PIPE_HISTORY_OUT XPLR_PIPE_DIRECTORY_NODES_OUT XPLR_PIPE_MSG_IN Append new-line delimited messages to this pipe in YAML (or JSON ) syntax. These messages will be read and handled by xplr after the command execution. XPLR_PIPE_SELECTION_OUT New-line delimited list of selected paths. XPLR_PIPE_GLOBAL_HELP_MENU_OUT The full help menu. XPLR_PIPE_LOGS_OUT New-line delimited list of logs. XPLR_PIPE_RESULT_OUT New-line delimited result (selected paths if any, else the focused path) XPLR_PIPE_HISTORY_OUT New-line delimited list of last visited paths (similar to jump list in vim). XPLR_PIPE_DIRECTORY_NODES_OUT New-line delimited list of paths, filtered and sorted as displayed in the files table .","breadcrumbs":"Configuration » Message » Environment variables","id":"189","title":"Environment variables"},"19":{"body":"xplr-termuxfd3c398d3cf4bcbc.md.jpg Please note that xplr isn't heavily tested on Termux, hence things might need a little tweaking and fixing for a smooth usage experience. Install build dependencies pkg install rustc cargo make Install xplr cargo install --force xplr Setup storage termux-setup-storage Setup config and runtime dir export XDG_CONFIG_HOME=\"$PWD/storage/.config\"\nexport XDG_RUNTIME_DIR=\"$PWD/storage/run\" mkdir -p \"$XDG_CONFIG_HOME\" \"$XDG_RUNTIME_DIR\" Run ~/.cargo/bin/xplr","breadcrumbs":"Quickstart » Install » Termux","id":"19","title":"Termux"},"190":{"body":"xplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { BashExec = [===[ echo \"What's your name?\" read name greeting=\"Hello $name!\" message=\"$greeting You are inside $PWD\" echo LogSuccess: '\"'$message'\"' >> \"${XPLR_PIPE_MSG_IN:?}\" ]===] } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example:","id":"190","title":"Example:"},"191":{"body":"xplr layouts define the structure of the UI, i.e. how many panel we see, placement and size of the panels, how they look etc. This is configuration exposed via the xplr.config.layouts API. It contains the following fields: builtin custom The users can switch between these layouts at run-time.","breadcrumbs":"Configuration » Layouts » Layouts","id":"191","title":"Layouts"},"192":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.builtin API. xplr by default provides the following builtin layouts: default no_help no_selection no_help_no_selection","breadcrumbs":"Configuration » Layouts » builtin","id":"192","title":"builtin"},"193":{"body":"Type: Layout This is the default layout we see when we run xplr.","breadcrumbs":"Configuration » Layouts » default","id":"193","title":"default"},"194":{"body":"Type: Layout This layout hides the help menu.","breadcrumbs":"Configuration » Layouts » no_help","id":"194","title":"no_help"},"195":{"body":"Type: Layout This layout hides the selection panel.","breadcrumbs":"Configuration » Layouts » no_selection","id":"195","title":"no_selection"},"196":{"body":"Type: Layout This layout hides both the help menu and the selection panel.","breadcrumbs":"Configuration » Layouts » no_help_no_selection","id":"196","title":"no_help_no_selection"},"197":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.custom API. It allows the users to define any custom layout. Example: xplr.config.layouts.custom.example = \"Nothing\"\nxplr.config.general.initial_layout = \"example\" -- when you load xplr, you should see a blank screen","breadcrumbs":"Configuration » Layouts » custom","id":"197","title":"custom"},"198":{"body":"A layout can be one of the following: \"Nothing\" \"Table\" \"InputAndLogs\" \"Selection\" \"HelpMenu\" \"SortAndFilter\" { Horizontal = { config = Layout Config , splits = { Layout , ... } } { Vertical = { config = Layout Config , splits = { Layout , ... } }","breadcrumbs":"Configuration » Layouts » Layout","id":"198","title":"Layout"},"199":{"body":"This layout contains a blank panel.","breadcrumbs":"Configuration » Layouts » Nothing","id":"199","title":"Nothing"},"2":{"body":"xplr is built with configurability in mind. So it allows you to perform a vast set of operations and make it behave just the way you want. A few things you can do with the xplr configuration Hack the layout Hack the key bindings Extend with plugins","breadcrumbs":"Introduction » Hackable","id":"2","title":"Hackable"},"20":{"body":"Once installed , use the following steps to setup and run xplr.","breadcrumbs":"Quickstart » Post Install » Post Install","id":"20","title":"Post Install"},"200":{"body":"This layout contains the table displaying the files and directories in the current directory.","breadcrumbs":"Configuration » Layouts » Table","id":"200","title":"Table"},"201":{"body":"This layout contains the panel displaying the input prompt and logs.","breadcrumbs":"Configuration » Layouts » InputAndLogs","id":"201","title":"InputAndLogs"},"202":{"body":"This layout contains the panel displaying the selected paths.","breadcrumbs":"Configuration » Layouts » Selection","id":"202","title":"Selection"},"203":{"body":"This layout contains the panel displaying the help menu for the current mode in real-time.","breadcrumbs":"Configuration » Layouts » HelpMenu","id":"203","title":"HelpMenu"},"204":{"body":"This layout contains the panel displaying the pipeline of sorters and filters applied of the list of paths being displayed.","breadcrumbs":"Configuration » Layouts » SortAndFilter","id":"204","title":"SortAndFilter"},"205":{"body":"This is a special layout that splits the panel into two horizontal parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Horizontal","id":"205","title":"Horizontal"},"206":{"body":"This is a special layout that splits the panel into two vertical parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Vertical","id":"206","title":"Vertical"},"207":{"body":"A layout config contains the following information: margin horizontal_margin vertical_margin constraints","breadcrumbs":"Configuration » Layouts » Layout Config","id":"207","title":"Layout Config"},"208":{"body":"Type: nullable integer The width of the margin in all direction.","breadcrumbs":"Configuration » Layouts » margin","id":"208","title":"margin"},"209":{"body":"Type: nullable integer The width of the horizontal margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » horizontal_Margin","id":"209","title":"horizontal_Margin"},"21":{"body":"mkdir -p ~/.config/xplr version=\"$(xplr | grep ^version: | cut -d' ' -f 2)\" # When the app loads, press `#` echo version = '\"'${version:?}'\"' > ~/.config/xplr/init.lua Then copy from here and remove / comment out what you don't want to customize. Note: You don't generally need to create the config file. You can use the default configuration for basic operations. However, creating the config file is recommended because the project is in its early stage and the defaults might change. Creating the config file will save you from unexpected behavior when you upgrade . Also, the default configuration is meant to be overwritten to suit your workflow.","breadcrumbs":"Quickstart » Post Install » Create the customizable config file","id":"21","title":"Create the customizable config file"},"210":{"body":"Type: nullable integer The width of the vertical margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » vertical_Margin","id":"210","title":"vertical_Margin"},"211":{"body":"Type: nullable list of Constraint The constraints applied on the layout.","breadcrumbs":"Configuration » Layouts » constraints","id":"211","title":"constraints"},"212":{"body":"A constraint can be one of the following: { Percentage = int } { Ratio = { int, int } } { Length = { int } { LengthLessThanScreenHeight = int } { LengthLessThanScreenWidth = int } { LengthLessThanLayoutHeight = int } { LengthLessThanLayoutWidth = int } { Max = int } { MaxLessThanScreenHeight = int } { MaxLessThanScreenWidth = int } { MaxLessThanLayoutHeight = int } { MaxthLessThanLayoutWidth = int } { Min = int } { MinLessThanScreenHeight = int } { MinLessThanScreenWidth = int } { MinLessThanLayoutHeight = int } { MinLessThanLayoutWidth = int } TODO: document each constraint.","breadcrumbs":"Configuration » Layouts » Constraint","id":"212","title":"Constraint"},"213":{"body":"Type: list of Layout The list of child layouts to fit into the parent layout.","breadcrumbs":"Configuration » Layouts » splits","id":"213","title":"splits"},"214":{"body":"layout.png xplr.config.layouts.builtin.default = { Horizontal = { config = { margin = 1, horizontal_margin = 2, vertical_margin = 3, constraints = { { Percentage = 50 }, { Percentage = 50 }, } }, splits = { \"Table\", \"HelpMenu\", } }\n}","breadcrumbs":"Configuration » Layouts » Example","id":"214","title":"Example"},"215":{"body":"This configuration defines how to deal with different kinds of nodes (files, directories, symlinks etc.) in a directory. This can be configured using the xplr.config.node_types Lua API. It contains the following fields: directory file symlink mime_essence extension special One node can fall into multiple categories. For example, a node can have the extension md, and be a file. In that case, the properties from the more specific category i.e. extension will be used. The priority is: special > extension > mime_essence > symlink > file > directory","breadcrumbs":"Configuration » Node Types » Node Types","id":"215","title":"Node Types"},"216":{"body":"Type: NodeType Config Properties related to directories are defined here. Contains the following fields: Example: xplr.config.node_types.directory.meta.icon = \"\"\nxplr.config.node_types.directory.style.add_modifiers = { \"Bold\" }","breadcrumbs":"Configuration » Node Types » directory","id":"216","title":"directory"},"217":{"body":"Type: NodeType Config Properties related to regular files are defined here. Contains the following fields: Example: xplr.config.node_types.file.meta.icon = \"\"\nxplr.config.node_types.file.style.fg = \"White\"","breadcrumbs":"Configuration » Node Types » file","id":"217","title":"file"},"218":{"body":"Type: NodeType Config Properties related to symlink are defined here. Example: xplr.config.node_types.symlink.meta.icon = \"\"\nxplr.config.node_types.symlink.style.add_modifiers = { \"Italic\" }","breadcrumbs":"Configuration » Node Types » symlink","id":"218","title":"symlink"},"219":{"body":"Type: mapping of mime-type and mapping of mime-subtype and NodeType Config Properties related to files with specific mime types are defined here. It is possible to use the wildcard * to match all mime subtypes. It will be overwritten by the more specific sub types that are defined. Example: xplr.config.node_types.mime_essence = { application = { -- application/* [\"*\"] = { meta = { icon = \"a\" } } -- application/pdf pdf = { meta = { icon = \"\" } }, -- application/zip zip = { meta = { icon = \"\"} }, },\n}","breadcrumbs":"Configuration » Node Types » mime_essence","id":"219","title":"mime_essence"},"22":{"body":"xplr","breadcrumbs":"Quickstart » Post Install » Run","id":"22","title":"Run"},"220":{"body":"Type: mapping of extension and NodeType Config Properties related to files with specific extension are defined here. Example: xplr.config.node_types.extension.md = { meta = { icon = \"\" } }\nxplr.config.node_types.extension.rs = { meta = { icon = \"🦀\" } }","breadcrumbs":"Configuration » Node Types » extension","id":"220","title":"extension"},"221":{"body":"Type: mapping of name and NodeType Config Properties related to files and directories with special names are defined here. Example: xplr.config.node_types.special[\"Cargo.toml\"] = { meta = { icon = \"\" } }\nxplr.config.node_types.special[\"Downloads\"] = { meta = { icon = \"\" } }","breadcrumbs":"Configuration » Node Types » special","id":"221","title":"special"},"222":{"body":"A node-type config contains the following fields: meta style","breadcrumbs":"Configuration » Node Types » NodeType Config","id":"222","title":"NodeType Config"},"223":{"body":"Type: mapping of string and string A meta field can contain custom metadata about a node. By default, the \"icon\" metadata is set for the directory , file , and symlink nodes. Example: xplr.config.node_types.file = { meta = { icon = \"f\", foo = \"bar\", }\n}","breadcrumbs":"Configuration » Node Types » meta","id":"223","title":"meta"},"224":{"body":"A style object contains the following information: fg bg add_modifiers sub_modifiers","breadcrumbs":"Configuration » Style » Style","id":"224","title":"Style"},"225":{"body":"Type: nullable Color The foreground color.","breadcrumbs":"Configuration » Style » fg","id":"225","title":"fg"},"226":{"body":"Type: nullable Color The background color.","breadcrumbs":"Configuration » Style » bg","id":"226","title":"bg"},"227":{"body":"Type: nullable list of Modifier Modifiers to add.","breadcrumbs":"Configuration » Style » add_modifiers","id":"227","title":"add_modifiers"},"228":{"body":"Type: nullable list of Modifier Modifiers to remove.","breadcrumbs":"Configuration » Style » sub_modifiers","id":"228","title":"sub_modifiers"},"229":{"body":"Color can be one of the following: \"Reset\" \"Black\" \"Red\" \"Green\" \"Yellow\" \"Blue\" \"Magenta\" \"Cyan\" \"Gray\" \"DarkGray\" \"LightRed\" \"LightGreen\" \"LightYellow\" \"LightBlue\" \"LightMagenta\" \"LightCyan\" \"White\" { Rgb = { int, int, int } } { Indexed = int }","breadcrumbs":"Configuration » Style » Color","id":"229","title":"Color"},"23":{"body":"xplr can be configured using Lua via a special file named init.lua ( example ), which can be placed in ~/.config/xplr/ (user specific) or /etc/xplr/ (global) depending on the use case. When a user specific configuration is available, the global configuration file will be ignored. However, it's also possible to place the file anywhere, with any name and use the command-line argument -c / --config to specify its path explicitely. In that case, both ~/.config/xplr/init.lua and /etc/xplr/init.lua will be ignored.","breadcrumbs":"Configuration » Configuration","id":"23","title":"Configuration"},"230":{"body":"Modifier can be one of the following: \"Bold\" \"Dim\" \"Italic\" \"Underlined\" \"SlowBlink\" \"RapidBlink\" \"Reversed\" \"Hidden\" \"CrossedOut\"","breadcrumbs":"Configuration » Style » Modifier","id":"230","title":"Modifier"},"231":{"body":"xplr.config.general.cursor.style.fg = \"Red\"\nxplr.config.general.cursor.style.bg = { Rgb = { 100, 150, 200 } }\nxplr.config.general.cursor.style.add_modifiers = { \"Bold\", \"Italic\" }\nxplr.config.general.cursor.style.sub_modifiers = { \"Hidden\" }","breadcrumbs":"Configuration » Style » Example","id":"231","title":"Example"},"232":{"body":"xplr supports sorting paths by different properties. The sorting mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: size↑ › [i]rel↓ › [c]dir↑ › [c]file↑ › sym↑ This line means that the nodes visible in the table will be first sorted by it's size, then by case insensitive relative path, then by the canonical (symlink resolved) type of the node, and finally by whether or not the node is a symlink. The arrows denote the order. Each part of this pipeline is called Node Sorter Applicable .","breadcrumbs":"Configuration » Sorting » Sorting","id":"232","title":"Sorting"},"233":{"body":"It contains the following information: sorter reverse","breadcrumbs":"Configuration » Sorting » Node Sorter Applicable","id":"233","title":"Node Sorter Applicable"},"234":{"body":"A sorter can be one of the following: \"ByRelativePath\" \"ByIRelativePath\" \"ByExtension\" \"ByIsDir\" \"ByIsFile\" \"ByIsSymlink\" \"ByIsBroken\" \"ByIsReadonly\" \"ByMimeEssence\" \"BySize\" \"ByCanonicalAbsolutePath\" \"ByICanonicalAbsolutePath\" \"ByCanonicalExtension\" \"ByCanonicalIsDir\" \"ByCanonicalIsFile\" \"ByCanonicalIsReadonly\" \"ByCanonicalMimeEssence\" \"ByCanonicalSize\" \"BySymlinkAbsolutePath\" \"ByISymlinkAbsolutePath\" \"BySymlinkExtension\" \"BySymlinkIsDir\" \"BySymlinkIsFile\" \"BySymlinkIsReadonly\" \"BySymlinkMimeEssence\" \"BySymlinkSize\" TODO: document each","breadcrumbs":"Configuration » Sorting » sorter","id":"234","title":"sorter"},"235":{"body":"Type: boolean It defined the direction of the order.","breadcrumbs":"Configuration » Sorting » reverse","id":"235","title":"reverse"},"236":{"body":"xplr.config.general.initial_sorting = { { sorter = \"ByCanonicalIsDir\", reverse = true }, { sorter = \"ByIRelativePath\", reverse = false },\n} This snippet defines the initial sorting logic to be applied when xplr loads.","breadcrumbs":"Configuration » Sorting » Example","id":"236","title":"Example"},"237":{"body":"xplr supports filtering paths by different properties. The filtering mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: rel!^. › [i]abs=~abc › [i]rel!~xyz This line means that the nodes visible on the table will first be filtered by the condition: relative path does not start with . , then by the condition: absolute path contains abc (case insensitive) , and finally by the condition: relative path does not contain xyz (case insensitive). Each part of this pipeline is called Node Filter Applicable .","breadcrumbs":"Configuration » Filtering » Filtering","id":"237","title":"Filtering"},"238":{"body":"It contains the following information: filter input","breadcrumbs":"Configuration » Filtering » Node Filter Applicable","id":"238","title":"Node Filter Applicable"},"239":{"body":"A filter can be one of the following: \"RelativePathIs\" \"RelativePathIsNot\" \"IRelativePathIs\" \"IRelativePathIsNot\" \"RelativePathDoesStartWith\" \"RelativePathDoesNotStartWith\" \"IRelativePathDoesStartWith\" \"IRelativePathDoesNotStartWith\" \"RelativePathDoesContain\" \"RelativePathDoesNotContain\" \"IRelativePathDoesContain\" \"IRelativePathDoesNotContain\" \"RelativePathDoesEndWith\" \"RelativePathDoesNotEndWith\" \"IRelativePathDoesEndWith\" \"IRelativePathDoesNotEndWith\" \"AbsolutePathIs\" \"AbsolutePathIsNot\" \"IAbsolutePathIs\" \"IAbsolutePathIsNot\" \"AbsolutePathDoesStartWith\" \"AbsolutePathDoesNotStartWith\" \"IAbsolutePathDoesStartWith\" \"IAbsolutePathDoesNotStartWith\" \"AbsolutePathDoesContain\" \"AbsolutePathDoesNotContain\" \"IAbsolutePathDoesContain\" \"IAbsolutePathDoesNotContain\" \"AbsolutePathDoesEndWith\" \"AbsolutePathDoesNotEndWith\" \"IAbsolutePathDoesEndWith\" \"IAbsolutePathDoesNotEndWith\" TODO: document each","breadcrumbs":"Configuration » Filtering » filter","id":"239","title":"filter"},"24":{"body":"When xplr loads, it first executes the built-in init.lua to set the default values, which is then overwritten by another config file, if found using the following lookup order: --config /path/to/init.lua > ~/.config/xplr/init.lua > /etc/xplr/init.lua","breadcrumbs":"Configuration » How Config Is Loaded","id":"24","title":"How Config Is Loaded"},"240":{"body":"Type: string The input for the condition.","breadcrumbs":"Configuration » Filtering » input","id":"240","title":"input"},"241":{"body":"ToggleNodeFilter = { filter = \"RelativePathDoesNotStartWith\", input = \".\"\n} Here, ToggleNodeFilter is a message that adds or removes (toggles) the filter applied.","breadcrumbs":"Configuration » Filtering » Example:","id":"241","title":"Example:"},"242":{"body":"A column renderer is a Lua function that receives a special argument and returns a string that will be displayed in each specific field of the files table . xplr by default provides the following column renderers: xplr.fn.builtin.fmt_general_table_row_cols_0 xplr.fn.builtin.fmt_general_table_row_cols_1 xplr.fn.builtin.fmt_general_table_row_cols_2 xplr.fn.builtin.fmt_general_table_row_cols_3 xplr.fn.builtin.fmt_general_table_row_cols_4 You can either overwrite these functions, or create new functions in xplr.fn.custom and point to them. Terminal colors are supported.","breadcrumbs":"Configuration » Column Renderer » Column Renderer","id":"242","title":"Column Renderer"},"243":{"body":"The special argument contains the following fields parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink index relative_index is_before_focus is_after_focus tree prefix suffix is_selected is_focused total meta","breadcrumbs":"Configuration » Column Renderer » Table Renderer Argument","id":"243","title":"Table Renderer Argument"},"244":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Column Renderer » parent","id":"244","title":"parent"},"245":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Column Renderer » relative_path","id":"245","title":"relative_path"},"246":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Column Renderer » absolute_path","id":"246","title":"absolute_path"},"247":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Column Renderer » extension","id":"247","title":"extension"},"248":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Column Renderer » is_symlink","id":"248","title":"is_symlink"},"249":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Column Renderer » is_broken","id":"249","title":"is_broken"},"25":{"body":"The xplr configuration, exposed as xplr.config Lua API contains the following fields: general modes layouts node_types","breadcrumbs":"Configuration » config","id":"25","title":"config"},"250":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Column Renderer » is_dir","id":"250","title":"is_dir"},"251":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Column Renderer » is_file","id":"251","title":"is_file"},"252":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Column Renderer » is_readonly","id":"252","title":"is_readonly"},"253":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Column Renderer » mime_essence","id":"253","title":"mime_essence"},"254":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Column Renderer » size","id":"254","title":"size"},"255":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Column Renderer » human_size","id":"255","title":"human_size"},"256":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Column Renderer » permissions","id":"256","title":"permissions"},"257":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Column Renderer » canonical","id":"257","title":"canonical"},"258":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Column Renderer » symlink","id":"258","title":"symlink"},"259":{"body":"Type: integer Index (starting from 0) of the node.","breadcrumbs":"Configuration » Column Renderer » index","id":"259","title":"index"},"26":{"body":"This configuration is exposed via the xplr.config.general API. It contains the following fields:","breadcrumbs":"Configuration » General Config » General Config","id":"26","title":"General Config"},"260":{"body":"Type: integer Relative index from the focused node (i.e. 0th node).","breadcrumbs":"Configuration » Column Renderer » relative_index","id":"260","title":"relative_index"},"261":{"body":"Type: boolean true if the node is before the focused node.","breadcrumbs":"Configuration » Column Renderer » is_before_focus","id":"261","title":"is_before_focus"},"262":{"body":"Type: boolean true if the node is after the focused node.","breadcrumbs":"Configuration » Column Renderer » is_after_focus","id":"262","title":"is_after_focus"},"263":{"body":"Type: string The tree component based on the node's index.","breadcrumbs":"Configuration » Column Renderer » tree","id":"263","title":"tree"},"264":{"body":"Type: string The prefix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » prefix","id":"264","title":"prefix"},"265":{"body":"Type: string The suffix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » suffix","id":"265","title":"suffix"},"266":{"body":"Type: boolean true if the node is selected.","breadcrumbs":"Configuration » Column Renderer » is_selected","id":"266","title":"is_selected"},"267":{"body":"Type: boolean true if the node is under focus.","breadcrumbs":"Configuration » Column Renderer » is_focused","id":"267","title":"is_focused"},"268":{"body":"Type: integer The total number of the nodes.","breadcrumbs":"Configuration » Column Renderer » total","id":"268","title":"total"},"269":{"body":"Type: mapping of string and string The applicable meta object for the node.","breadcrumbs":"Configuration » Column Renderer » meta","id":"269","title":"meta"},"27":{"body":"Type: boolean Set it to true enable scrolling using mouse.","breadcrumbs":"Configuration » General Config » enable_mouse","id":"27","title":"enable_mouse"},"270":{"body":"Permission contains the following fields: user_read user_write user_execute group_read group_write group_execute other_read other_write other_execute sticky setgid setuid Each field holds a boolean value.","breadcrumbs":"Configuration » Column Renderer » Permission","id":"270","title":"Permission"},"271":{"body":"It contains the following fields. absolute_path extension is_dir is_file is_readonly mime_essence size human_size","breadcrumbs":"Configuration » Column Renderer » Resolved Node Metadata","id":"271","title":"Resolved Node Metadata"},"272":{"body":"xplr.fn.custom.fmt_simple_column = function(m) return m.prefix .. m.relative_path .. m.suffix\nend xplr.config.general.table.header.cols = { { format = \" path\" }\n} xplr.config.general.table.row.cols = { { format = \"custom.fmt_simple_column\" }\n} xplr.config.general.table.col_widths = { { Percentage = 100 }\n} -- With this config, you should only see a single column displaying the\n-- relative paths.","breadcrumbs":"Configuration » Column Renderer » Example","id":"272","title":"Example"},"273":{"body":"The default key binding is inspired by vim and slightly overlaps with nnn , but it's supposed to be customized as per user requirements. When you press ? in default mode , you can see the complete list of modes and the key mappings for each mode.","breadcrumbs":"Default Key Bindings » Default Key Bindings","id":"273","title":"Default Key Bindings"},"274":{"body":"key remaps action . show hidden / ctrl-f search : action ? global help menu G go to bottom V ctrl-a select/unselect all ctrl-c terminate ctrl-i tab next visited path ctrl-o last visited path ctrl-r refresh screen ctrl-u clear selection ctrl-w switch layout d delete down j down enter quit with result f filter g go to h left back k up up l right enter q quit r rename s sort space v toggle selection ~ go home [0-9] input","breadcrumbs":"Default Key Bindings » default","id":"274","title":"default"},"275":{"body":"key remaps action ctrl-c terminate esc escape","breadcrumbs":"Default Key Bindings » recover","id":"275","title":"recover"},"276":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"276","title":"filter"},"277":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word down j to down enter to index esc cancel k up to up [0-9] input","breadcrumbs":"Default Key Bindings » number","id":"277","title":"number"},"278":{"body":"key remaps action ctrl-c terminate esc cancel f follow symlink g top x open in gui","breadcrumbs":"Default Key Bindings » go to","id":"278","title":"go to"},"279":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-n down down ctrl-p up up ctrl-u remove line ctrl-w remove last word enter esc focus left back right enter tab toggle selection","breadcrumbs":"Default Key Bindings » search","id":"279","title":"search"},"28":{"body":"Type: boolean Set it to true to show hidden files.","breadcrumbs":"Configuration » General Config » show_hidden","id":"28","title":"show_hidden"},"280":{"body":"key remaps action c copy here ctrl-c terminate esc cancel m move here x open in gui","breadcrumbs":"Default Key Bindings » selection ops","id":"280","title":"selection ops"},"281":{"body":"key remaps action ! shell c create ctrl-c terminate e open in editor esc cancel l logs m toggle mouse q quit options s selection operations [0-9] go to index","breadcrumbs":"Default Key Bindings » action to","id":"281","title":"action to"},"282":{"body":"key remaps action ctrl-c terminate d create directory esc cancel f create file","breadcrumbs":"Default Key Bindings » create","id":"282","title":"create"},"283":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create file esc cancel","breadcrumbs":"Default Key Bindings » create file","id":"283","title":"create file"},"284":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create directory esc cancel","breadcrumbs":"Default Key Bindings » create directory","id":"284","title":"create directory"},"285":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter rename esc cancel","breadcrumbs":"Default Key Bindings » rename","id":"285","title":"rename"},"286":{"body":"key remaps action D force delete ctrl-c terminate d delete esc cancel","breadcrumbs":"Default Key Bindings » delete","id":"286","title":"delete"},"287":{"body":"key remaps action ! reverse sorters E by canonical extension reverse M by canonical mime essence reverse N by node type reverse R by relative path reverse S by size reverse backspace remove last sorter ctrl-c terminate ctrl-r reset sorters ctrl-u clear sorters e by canonical extension enter esc done m by canonical mime essence n by node type r by relative path s by size","breadcrumbs":"Default Key Bindings » sort","id":"287","title":"sort"},"288":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"288","title":"filter"},"289":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does contain","id":"289","title":"relative path does contain"},"29":{"body":"Type: boolean Set it to true to use only a subset of selected operations that forbids executing commands or performing write operations on the file-system.","breadcrumbs":"Configuration » General Config » read_only","id":"29","title":"read_only"},"290":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does not contain","id":"290","title":"relative path does not contain"},"291":{"body":"key remaps action 1 default 2 no help menu 3 no selection panel 4 no help or selection ctrl-c terminate esc cancel","breadcrumbs":"Default Key Bindings » switch layout","id":"291","title":"switch layout"},"292":{"body":"xplr supports pluggable Lua modules that can be used to easily configure or extend xplr UI and functionalities. Installing Plugins Writing Plugins Awesome Plugins","breadcrumbs":"Plugin » Plugin","id":"292","title":"Plugin"},"293":{"body":"Until we get a cool plugin manager, let's install plugins manually using the following procedure: Add the following line in ~/.config/xplr/init.lua package.path = os.getenv(\"HOME\") .. '/.config/xplr/plugins/?/src/init.lua' Clone the plugin mkdir -p ~/.config/xplr/plugins git clone https://github.com/sayanarijit/material-landscape2.xplr ~/.config/xplr/plugins/material-landscape2 Require the module in ~/.config/xplr/init.lua require(\"material-landscape2\").setup() -- The setup arguments might differ for different plugins.\n-- Visit the project README for setup instructions.","breadcrumbs":"Plugin » Installing Plugins » Installing Plugins","id":"293","title":"Installing Plugins"},"294":{"body":"Anyone who can write Lua code, can write xplr plugins. Just follow the instructions and best practices:","breadcrumbs":"Plugin » Writing Plugins » Writing Plugins","id":"294","title":"Writing Plugins"},"295":{"body":"xplr plugins are named using hiphen (-) separated words that may also include integers. They will be plugged using the require() function in Lua.","breadcrumbs":"Plugin » Writing Plugins » Naming","id":"295","title":"Naming"},"296":{"body":"A minimal plugin should confirm to the following structure: plugin-name\n├── README.md\n└── src └── init.lua You can also use this template .","breadcrumbs":"Plugin » Writing Plugins » Structure","id":"296","title":"Structure"},"297":{"body":"This is where you document what the plugin does, how to use it, etc.","breadcrumbs":"Plugin » Writing Plugins » README.md","id":"297","title":"README.md"},"298":{"body":"This file is executed to load the plugin. It should expose a setup() function, which will be used by the users to setup the plugin. Example: local function setup(args) local xplr = xplr -- do stuff with xplr\nend return { setup = setup }","breadcrumbs":"Plugin » Writing Plugins » src/init.lua","id":"298","title":"src/init.lua"},"299":{"body":"When publishing plugins on GitHub or other repositories, it's a best practice to append .xplr to the name to make them distinguishable. Similar to the *.nvim naming convention for Neovim plugins. Finally, after publishing, don't hesitate to let us know .","breadcrumbs":"Plugin » Writing Plugins » Publishing","id":"299","title":"Publishing"},"3":{"body":"Although speed is not the primary concern, xplr is already fast enough so that you can take it out for a walk into your node_modules or /nix/store any time you want. I currently measure the most commonly used operations and I have seen it improve significantly over time, and it's only the start. Tip: A quick and easy way to optimize UI rendering is reducing the number of columns in the table. Note: If you feel xplr is not behaving at its optimal, this is probably because I am waiting for someone to complain. I want to avoid optimizing things I don't need to, because optimization often requires either complexity or feature sacrifice or both.","breadcrumbs":"Introduction » Fast","id":"3","title":"Fast"},"30":{"body":"Type: boolean Set it to true when the special recover mode gets too annoying to appreciate the good intentions. When enabled, typing the wrong keys won't result in any action.","breadcrumbs":"Configuration » General Config » disable_recover_mode","id":"30","title":"disable_recover_mode"},"300":{"body":"Visit Awesome Plugins for xplr plugin examples.","breadcrumbs":"Plugin » Writing Plugins » Examples","id":"300","title":"Examples"},"301":{"body":"Here's a list of awesome xplr plugins that you might want to check out. If none of the following plugins work for you, it's very easy to write your own .","breadcrumbs":"Plugin » Awesome Plugins » Awesome Plugins","id":"301","title":"Awesome Plugins"},"302":{"body":"Extension Integration Theme","breadcrumbs":"Plugin » Awesome Plugins » Categories","id":"302","title":"Categories"},"303":{"body":"type-to-nav.xplr Inspired by nnn's type-to-nav mode for xplr, with some tweaks. completion.xplr The missing tab completion for xplr input buffer. comex.xplr One xplr plugin to compress and extract them all.","breadcrumbs":"Plugin » Awesome Plugins » Extension","id":"303","title":"Extension"},"304":{"body":"dragon.xplr Drag and drop files using dragon . dua-cli.xplr Get the disk usage using dua-cli with selection support. fzf.xplr Fuzzy search using fzf to focus on a file or enter into a directory. paste-rs.xplr Use this plugin to paste your files to paste.rs , and open/delete them later using fzf . preview-tabbed.xplr Preview paths using suckless tabbed and nnn preview-tabbed . qrcp.xplr Send and receive files via QR code using qrcp . trash-cli.xplr Trash files and directories using trash-cli . xargs.xplr Batch execute commands on the focused or selected files using xargs. xclip.xplr Copy and paste with system clipboard using xclip . zoxide.xplr Change directory using the zoxide database.","breadcrumbs":"Plugin » Awesome Plugins » Integration","id":"304","title":"Integration"},"305":{"body":"material-landscape.xplr Material Landscape material-landscape2.xplr Material Landscape 2 zentable.xplr A clean, distraction free xplr table UI icons.xplr An icon theme for xplr.","breadcrumbs":"Plugin » Awesome Plugins » Theme","id":"305","title":"Theme"},"306":{"body":"xplr is designed to integrate well with other tools and commands. It can be used as a file picker or a pluggable file manager. Awesome Integrations","breadcrumbs":"Integration » Integration","id":"306","title":"Integration"},"307":{"body":"Here's a list of awesome xplr integrations that you might want to check out. If none of the following integrations work for you, you can create your own and let us know .","breadcrumbs":"Integration » Awesome Integrations » Awesome Integrations","id":"307","title":"Awesome Integrations"},"308":{"body":"Editor Shell Security Tools","breadcrumbs":"Integration » Awesome Integrations » Categories","id":"308","title":"Categories"},"309":{"body":"xplr.vim vim-floaterm","breadcrumbs":"Integration » Awesome Integrations » Editor","id":"309","title":"Editor"},"31":{"body":"Type: nullable string This is the shape of the cursor visible when the input buffer contains some string.","breadcrumbs":"Configuration » General Config » cursor.format","id":"31","title":"cursor.format"},"310":{"body":"powerlevel10k","breadcrumbs":"Integration » Awesome Integrations » Shell","id":"310","title":"Shell"},"311":{"body":"gpg-tui","breadcrumbs":"Integration » Awesome Integrations » Security Tools","id":"311","title":"Security Tools"},"312":{"body":"Saner key bindings. Pipes. Native search & filter. Create, copy, move, delete files directly. logging support. Version compatibility instructions. Implement CLI arguments. ~Add support for tabs and/or panes (non native)~ hacked | discussion ~Implement bookmarks.~ hacked Add sorting support. Add filter support. File previews. Implement plugins support (or some way to easily share configuration). Bigger (and better) help menu. Offline docs. Support for background services. ~Customize~ switch UI in run-time. More tests and benchmarks. Measure code coverage. Improve the vim plugin . Cleanup, refactor, optimize. add more Like this project so far? Please consider contributing .","breadcrumbs":"TODO » TODO","id":"312","title":"TODO"},"313":{"body":"These are the alternative TUI/CLI file managers/explorers you might want to check out (in no particular order). nnn vifm ranger lf joshuto fff mc broot hunter noice clifm clifm (non curses) add more","breadcrumbs":"Alternatives » Alternatives","id":"313","title":"Alternatives"},"314":{"body":"When you upgrade xplr, you might see an error like this Incompatible script version in: /home/sayanarijit/.config/xplr/init.lua. The script version is: 0.9.0, the required version is: 0.10.1. Visit https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide All you need to do is follow the instructions starting from your config version, all the way to the required version. Expand for more information With every update, we either implement a major breaking change (e.g. deprecating or replacing messages), or a minor feature addition (e.g. adding new messages) or patch, fixes, and optimization (e.g. performance optimization). Knowing that we use the {major}.{minor}.{patch} versioning format, Major version mismatch are generally incompatible. xplr will fail with error. Minor version upgrades (not downgrades) and patch fixes are backwards compatible. You might get notified by log a message which you can disable by updating the version in your config file. However, if the config file has a higher value for the minor version than the app, then also xplr will fail with error, suggesting you to visit this page. Though in that case, you will be downgrading your config file based on your app version. e.g. 1.0.0 -> 1.0.x: Bug fix (fully compatible). 1.0.0 -> 1.x.x: Only backwards compatible. You can't generally use for e.g. app-1.0.0 with config-1.1.0. But vice versa is fine. 1.0.0 -> x.x.x: Not compatible at all. Note that until we're v1, we'll be using the {minor} version number as {major}, and the {patch} fix number as {minor} to determine compatibility.","breadcrumbs":"Upgrade Guide » Upgrade Guide","id":"314","title":"Upgrade Guide"},"315":{"body":"v0.13.7 -> v0.14.5 macOS users need to place their config file (init.lua) in $HOME/.config/xplr/ or /etc/xplr/. Library users please refer to the latest API docs. Check out the new messages: {Start|Stop|Toggle}Fifo. These enable support for FIFO based file previews . You can disable the recover mode using config.general.disable_recover_mode = true. Try running xplr --help. Yes, CLI has been implemented. Since version v0.14.3, StartFifo and ToggleFifo will write to the FIFO path when called. So, there's no need to pipe the focus path explicitely. Since version v0.14.3, general config xplr.config.start_fifo is available which can be set to a file path to start a fifo when xplr starts. Since version v0.14.4, $XPLR_SESSION_PATH can be used to dump session related data. Like this project so far? Please consider contributing . v0.12.1 -> v0.13.7 Lua functions called using CallLua and CallLuaSilently messages will receive CallLuaArg object as the function argument (instead of the App object). Each node_types config will inherit defaults from matching less specifig node_types config and overwrite them. Since version v0.13.2, you don't need to use/send Refresh anymore. It will be auto-handled by xplr. v0.11.1 -> v0.12.1 xplr.config.node_types.mime_essence has split into type and subtype. Hence, instead of xplr.config.node_types.mime_essence[\"text/plain\"] = .. use xplr.config.node_types.mime_essence[\"text\"] = { plain = .. }. You can also define xplr.config.node_types.mime_essence[\"text\"][\"*\"] that will match all text types (text/*). v0.10.2 -> v0.11.1 remaps: has been removed to avoid confusion. Use lua assignments instead. For e.g. xplr.config.modes.builtin.default.key_bindings.on_key[\"v\"] = xplr.config.modes.builtin.default.key_bindings.on_key.space v0.9.1 -> v0.10.2 config.yml has been fully replaced with init.lua . If you have a lot of customization in your config.yml, xplr-yml2lua can help you with migrating it to init.lua. Handlebars templates has been replaced with Lua functions . You can either remove the customizations or overwrite the functions accordingly. Added new messages CallLua and CallLuaSilently to call lua functions. The app state will be passed as input to the functions, and the returned messages will be handled by xplr. CallLua and CallLuaSilently are more flexible (and probably faster) alternatives to Call, CallSilently, BashExec and BashExecSilently. e.g. v0.9.0 -> v0.9.1 You can now set remaps: {key: null} to un-map a key. gx will open the item under focus. New key map :sx will open the selected items. v0.8.0 -> v0.9.0 Your previous config should mostly work fine. However, in case you are using SwitchMode heavily in your custom config, follow along. Introduced new message PopMode. You might want to use this message instead of SwitchMode* when returning back to the previous mode. After using (the group of) PopMode and SwitchMode* messages, you are now required to Refresh manually to avoid the UI lag. Pressing any invalid key will now lead you to the recover mode and will protect you from typing further invalid keys. Press esc to escape the recover mode. Introduced new message LogWarning, similar to other Log* messages. Creating files and directories has been optimized for batch creation. v0.7.2 -> v0.8.0 If you have made changes to the config file, Replace message Explore with ExplorePwd or ExplorePwdAsync or probably ExploreParentsAsync. Pipe $XPLR_PIPE_FOCUS_OUT has been removed. Use $XPLR_FOCUS_PATH env var instead. You might want to review your path escaping logics. For e.g. use echo FocusPath: \"'\"$PWD\"'\" >> $PIPE instead of echo \"FocusPath: $PWD\" >> $PIPE. v0.7.0 -> v0.7.2 Just update the version in your config file. For version >= v0.7.1, you might want to free up or remap the tab key in search mode to enable easy selection during search. v0.6.0 -> v0.7.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, You can make the Table: ..., InputAndLogs: ... layout values null and define the common properties in the general.panel_ui instead. v0.5.13 -> v0.6.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, Rename add_modifier: {bits: 1} to add_modifiers: [Bold], sub_modifier: {bits: 1} to sub_modifiers: [Bold] and so on. Rename percentage: 10 to Percentage: 10, ratio: 1 to Ratio: 1 and so on. You might want to free up or remap the ctrl-w key binding in default mode to enable layout switching. Optionally, checkout this new theme to learn more about what's new. v0.5.0 -> v0.5.13 Just update the version in your config file. For versions >= v0.5.8, you can set $OPENER env var to declare a global GUI file opener (to open files using keys gx). You might also want to update other mappings to handle files with names starting with - (hiphen). For example, instead of rm ${filename} use rm -- ${filename}. Same goes for cp, mv, cat, touch etc. For version >= v0.5.13, you might want to use the more specific SwitchModeBuiltin and SwitchModeCustom messages instead of the general SwitchMode message. v0.4.3 -> v0.5.0 If you haven't have any changes in the config file, you should be fine just updating the version number. Else do the following Replace {RelativePathIs, case_sensitive: true} with RelativePathIs. Replace {RelativePathIs, case_sensitive: false} with IRelativePathIs. Do the same with other filters you are using. You might want to update your backspace handling to use the RemoveInputBufferLastCharacter message. You might want to free-up f, s, ctrl-r and ctrl-u key bindings in the default mode, or remap them. You might want to use the new UI variables. Update your config version to v0.5.0. v0.4.2 -> v0.4.3 If you have customized general.table.row.cols, you might want to update it to use the new variables with better symlink support. v0.4.1 -> v0.4.2 In case you have mapped the keys q, ctrl-i and ctrl-o, you may want to revisit the default mode key bindings and remap accordingly to use the new functionalities. v0.3.13 -> v0.4.1 A lot has changed (apologies). But I promise from now on, upgrading will be much less painful (thanks to @maximbaz 's valuable inputs and code reviews ). So, to start with the upgrade, let's remove everything from your config file except the version field and your custom modifications. If version is the only thing remaining, update it to v0.4.1 and you are done. Else, do the following Rename general.focused_ui to general.focus_ui ( see here ). Rename filetypes to node_types. ( see here ) Rename custom field to meta. ( see here ) Move icon to meta.icon. ( see here ) Rename normal_ui to default_ui. ( see here ) Split modes into modes.builtin and modes.custom ( see here ). Migrate your custom modes to modes.custom. And copy only the changes in the in-built modes in modes.builtin. Finally, update the version to v0.4.1. v0.3.8 -> v0.3.13 Your current config should work fine. However, you might want to replace some Call and BashExec messages with CallSilently and BashExecSilently to remove the flickering of the screen. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for Call and BashExec in the new config. Compare and probably replace the associated actions in your current config v0.3.0 -> v0.3.8 Your current config should work fine. However, you might want to replace some ResetNodeFilters messages with RemoveNodeFilter and RemoveNodeFilterFromInput to get a better search and filter experience. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for RemoveNodeFilterFromInput in the new config. Compare and probably replace the associated actions in your current config. v0.2.14 -> v0.3.0 If you haven't made any changes to the configuration, you can delete and regenerate it. Else do the following: $XPLR_APP_YAML has been removed. You can use Debug to export the app state. $XPLR_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_GLOBAL_HELP_MENU has been ported to file $XPLR_PIPE_GLOBAL_HELP_MENU_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_DIRECTORY_NODES has been ported to file $XPLR_PIPE_DIRECTORY_NODES_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_LOGS has been ported to file $XPLR_PIPE_LOGS_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_PIPE_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. Finally, update the version in your config file.","breadcrumbs":"Upgrade Guide » Instructions","id":"315","title":"Instructions"},"316":{"body":"Building an active community of awesome people and learning stuff together is one of my reasons to publish this tool and maintain it. Hence, please feel free to reach out via your preferred way. Real-time chat lovers can join our discord channel . Forum discussion veterans can start a new GitHub discussion . BTW I like Miyazaki and Shinkai works.","breadcrumbs":"Community » Community","id":"316","title":"Community"},"317":{"body":"If you like xplr, and want to contribute, that would be really awesome. You can contribute to this project in the following ways Contribute your time and expertise (read CONTRIBUTING.md for instructions). Developers: You can help me improve my code, fix things, implement features etc. Repository maintainers: You can save the users from the pain of managing xplr in their system manually. Code Reviewers: Teach me your ways of code. Designers: You can make the logo even more awesome, donate stickers and blog post worthy pictures. Bloggers, YouTubers & broadcasters: You can help spread the word. Contribute by donating. You can fuel me with coins of encouragement or buy me a coffee . For further queries or concern related to xplr, just ask us .","breadcrumbs":"Contribute » Backers","id":"317","title":"Backers"},"32":{"body":"Type: Style Style of the cursor.","breadcrumbs":"Configuration » General Config » cursor.style","id":"32","title":"cursor.style"},"33":{"body":"Type: string The name of one of the layout to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_layout","id":"33","title":"initial_layout"},"34":{"body":"Type: string The name of one of the mode to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_mode","id":"34","title":"initial_mode"},"35":{"body":"Type: list of Node Sorter Applicable Initial group if sorters applied to the nodes list in the table.","breadcrumbs":"Configuration » General Config » initial_sorting","id":"35","title":"initial_sorting"},"36":{"body":"Type: Style Default style of the table.","breadcrumbs":"Configuration » General Config » table.style","id":"36","title":"table.style"},"37":{"body":"Type: nullable integer Default spacing of the columns in the table.","breadcrumbs":"Configuration » General Config » table.col_spacing","id":"37","title":"table.col_spacing"},"38":{"body":"Type: nullable list of Constraint Width of each column in the table.","breadcrumbs":"Configuration » General Config » table.col_widths","id":"38","title":"table.col_widths"},"39":{"body":"Type: nullable integer Height of the table header.","breadcrumbs":"Configuration » General Config » table.header.height","id":"39","title":"table.header.height"},"4":{"body":"xplr prefers to stay minimal, both in terms of features and binary size, but just like speed, minimalism isn't as aggressively pursued as configurability. If adding some feature, lines of code, or a dependency allows the users to be a little more productive or allows xplr to be a little more configurable, it will be considered. But of-course, the bulk vs productivity gain per user balance will also be considered in the decision-making.","breadcrumbs":"Introduction » Minimalist","id":"4","title":"Minimalist"},"40":{"body":"Type: Style Style of table header.","breadcrumbs":"Configuration » General Config » table.header.style","id":"40","title":"table.header.style"},"41":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ), that define the content and style of header.","breadcrumbs":"Configuration » General Config » table.header.cols","id":"41","title":"table.header.cols"},"42":{"body":"Type: nullable integer Height of each row in the table.","breadcrumbs":"Configuration » General Config » table.row.height","id":"42","title":"table.row.height"},"43":{"body":"Type: Style Style of table rows.","breadcrumbs":"Configuration » General Config » table.row.style","id":"43","title":"table.row.style"},"44":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ). However, unlike table.header.cols , the format field here points to a column renderer function .","breadcrumbs":"Configuration » General Config » table.row.cols","id":"44","title":"table.row.cols"},"45":{"body":"Type: List of tree configuration It expects a list of three items. The first component of the tree, then the middle components, and finally the last component of the tree. Each item requires the format field which is a string, and the style field, which is the Style object. Example: xplr.config.general.table.tree = { { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"╰─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } },\n} TODO: Continue documentation.","breadcrumbs":"Configuration » General Config » table.tree","id":"45","title":"table.tree"},"46":{"body":"xplr is a modal file explorer. That means the users switch between different modes, each containing a different set of key bindings to avoid clashes. Users can switch between these modes at run-time. The modes can be configured using the xplr.config.modes Lua API. It contains the following fields: builtin custom","breadcrumbs":"Configuration » Modes » Modes","id":"46","title":"Modes"},"47":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.builtin API. xplr by default provides the following builtin modes: default recover selection_ops create create_directory create_file number go_to rename delete action search filter relative_path_does_contain relative_path_does_not_contain sort switch_layout quit Visit the Default Key Bindings to see what each mode does.","breadcrumbs":"Configuration » Modes » builtin","id":"47","title":"builtin"},"48":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.custom API. It allows the users to define custom modes. Example: xplr.config.modes.custom.example = { name = \"example\", key_bindings = { on_key = { enter = { help = \"default mode\", messages = { \"PopMode\", { SwitchModeBuiltin = \"default\" } } } } }\n} xplr.config.general.initial_mode = \"example\" -- when you load xplr, you should be in the \"example\" mode,\n-- pressing \"enter\" should take you to the \"default\" mode.","breadcrumbs":"Configuration » Modes » custom","id":"48","title":"custom"},"49":{"body":"A mode contains the following information: name help extra_help key_bindings","breadcrumbs":"Configuration » Modes » Mode","id":"49","title":"Mode"},"5":{"body":"Embedded LuaJIT for portability and extensibility. Switchable recover mode: Saves you from doing unwanted things when in a hurry. Sane (vim-like) defaults: Use h, j, k, l or arrow keys for basic navigation. Go to top using g g, and bottom using G. Travel history using ctrl-o and ctrl-i. Go to home directory using ~. Enter search mode with / or ctrl-f. Go to absolute index (e.g. 4) using 4 enter or : 4 enter. Go to relative index (e.g. 4 down) using 4 down or : 4 down. Follow symlink using g f. Open in GUI using g x. Spawn terminal using : !. Toggle selection using v or space. Toggle select all using V or ctrl-a. Clear selections using ctrl-u. Separate keys for navigation: navigation keys are separated from the action keys (e.g. file opening action) to avoid mistakenly performing unwanted actions while navigating. Always visible panels to save you brain cycles: Selection list. Help menu. Input & logs. Filter and sort pipeline. Batch creation: Create multiple files and directories without repeating keys. Batch sort & filter: Apply sorters and filters in without repeating keys. Custom file properties: Display custom file properties with custom colors in the table using Lua functions. Input buffer: Read user input using the built-in input buffer with customizable behavior. Switchable layouts: Switch layouts dynamically without leaving xplr. Saved locations: Never lose context when traveling back and forth directories. Auto refresh state: Auto refresh app state when the $PWD changes. Manually refresh UI when other apps mess it up. FIFO-based previews: Easy to manage FIFO file that can be used to integrate with previewers . Different quit options: Quit with success without any output (q). Quit with success and the result printed on stdout (enter). Quit with success and the present working directory printed on stdout (: q p). Quit with success and the path under focus printed on stdout (: q f). Quit with success and the selection printed on stdout (: q s). Quit with failure (ctrl-c).","breadcrumbs":"Introduction » Other features","id":"5","title":"Other features"},"50":{"body":"Type: string This is the name of the mode visible in the help menu.","breadcrumbs":"Configuration » Modes » name","id":"50","title":"name"},"51":{"body":"Type: nullable string If specified, the help menu will display this instead of the auto generated mappings.","breadcrumbs":"Configuration » Modes » help","id":"51","title":"help"},"52":{"body":"Type: nullable string If specified, the help menu will display this along-side the auto generated help menu.","breadcrumbs":"Configuration » Modes » extra_help","id":"52","title":"extra_help"},"53":{"body":"Type: Key Bindings The key bindings available in that mode.","breadcrumbs":"Configuration » Modes » key_bindings","id":"53","title":"key_bindings"},"54":{"body":"Key bindings define how each keyboard input will be handled in a specific mode. See the default key bindings for example. Key bindings contains the following information: on_key on_alphabet on_number on_special_character default","breadcrumbs":"Configuration » Modes » Key Bindings","id":"54","title":"Key Bindings"},"55":{"body":"Type: mapping of Key to nullable Action Defines what to do when a specific key is pressed.","breadcrumbs":"Configuration » Modes » on_key","id":"55","title":"on_key"},"56":{"body":"Type: nullable Action An action to perform if the keyboard input is an alphabet and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_alphabet","id":"56","title":"on_alphabet"},"57":{"body":"Type: nullable Action An action to perform if the keyboard input is a number and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_number","id":"57","title":"on_number"},"58":{"body":"Type: nullable Action An action to perform if the keyboard input is a special character and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_special_character","id":"58","title":"on_special_character"},"59":{"body":"Type: nullable Action Default action to perform in case of a keyboard input not mapped via any of the on_key , on_alphabet , on_number or on_special_character field.","breadcrumbs":"Configuration » Modes » default","id":"59","title":"default"},"6":{"body":"Nice to you have here! Let's quickly start our xplr journey with the following steps: Install Post Install","breadcrumbs":"Quickstart » Quickstart","id":"6","title":"Quickstart"},"60":{"body":"A key can be one of the following: 0, 1, ... 9 a, b, ... z A, B, ... Z f1, f2, ... f12 ctrl-a, ctrl-b, ... ctrl-z alt-a, alt-b, ... alt-z backspace left right up down home end page-up page-down back-tab delete insert enter tab esc And finally, the special characters - including space (\" \").","breadcrumbs":"Configuration » Modes » Key","id":"60","title":"Key"},"61":{"body":"An action contains the following information: help messages","breadcrumbs":"Configuration » Modes » Action","id":"61","title":"Action"},"62":{"body":"Type: nullable string Description of what it does. If unspecified, it will be excluded from the help menu.","breadcrumbs":"Configuration » Modes » help","id":"62","title":"help"},"63":{"body":"Type: A list of Message to send. The list of messages to send when a key is pressed.","breadcrumbs":"Configuration » Modes » messages","id":"63","title":"messages"},"64":{"body":"Assuming xplr is installed and setup , let's add our own mode to integrate xplr with fzf . We'll call it fzxplr mode. First, let's add a custom mode called fzxplr, and map the key F to an action that will call fzf to search and focus on a file or enter into a directory. xplr.config.modes.custom.fzxplr = { name = \"fzxplr\", key_bindings = { on_key = { F = { help = \"search\", messages = { { BashExec = [===[ PTH=$(cat \"${XPLR_PIPE_DIRECTORY_NODES_OUT:?}\" | awk -F/ '{print $NF}' | fzf) if [ -d \"$PTH\" ]; then echo ChangeDirectory: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" else echo FocusPath: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" fi ]===] }, \"PopMode\", }, }, }, default = { messages = { \"PopMode\", }, }, },\n} As you can see, the key F in mode fzxplr (the name can be anything) executes a script in bash. BashExec, PopMode, SwitchModeBuiltin, ChangeDirectory and FocusPath are messages , $XPLR_PIPE_MSG_IN, $XPLR_PIPE_DIRECTORY_NODES_OUT are environment variables exported by xplr before executing the command. They contain the path to the input and output pipes that allows external tools to interact with xplr. Now that we have our new mode ready, let's add an entry point to this mode via the default mode. xplr.config.modes.builtin.default.key_bindings.on_key[\"F\"] = { help = \"fzf mode\", messages = { { SwitchModeCustom = \"fzxplr\" }, },\n} Now let's try out the new xplr-fzf integration. xplr-fzf.gif Visit Awesome Plugins for more integration options.","breadcrumbs":"Configuration » Modes » Tutorial: Adding a New Mode","id":"64","title":"Tutorial: Adding a New Mode"},"65":{"body":"You can think of xplr as a server. Just like web servers listen to HTTP requests, xplr listens to messages . You can send these messages to an xplr session in the following ways: Via key bindings Via Lua function calls Via shell command using the input pipe","breadcrumbs":"Configuration » Message » Message","id":"65","title":"Message"},"66":{"body":"To send messages using the key bindings or Lua function calls , messages are represented in Lua syntax. For example: \"Quit\" { FocusPath = \"/path/to/file\" } { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } } However, to send messages using the input pipe , they need to be represented using YAML (or JSON ) syntax. For example: Quit FocusPath: \"/path/to/file\" Call: { command: bash, args: [\"-c\", \"read -p test\"] }","breadcrumbs":"Configuration » Message » Format","id":"66","title":"Format"},"67":{"body":"","breadcrumbs":"Configuration » Message » Full List of Messages","id":"67","title":"Full List of Messages"},"68":{"body":"YAML: ExplorePwd Explore the present working directory and register the filtered nodes. This operation is expensive. So, try to avoid using it too often.","breadcrumbs":"Configuration » Message » \"ExplorePwd\"","id":"68","title":"\"ExplorePwd\""},"69":{"body":"YAML: ExplorePwdAsync Explore the present working directory and register the filtered nodes asynchronously. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExplorePwdAsync\"","id":"69","title":"\"ExplorePwdAsync\""},"7":{"body":"You can install xplr using one of the following ways. Each has their own advantages and limitations. For example, the Direct Download , From crates.io , and Build From Source methods allow the users to install the latest possible version of xplr, but they have one common drawback - the user will need to keep an eye on the releases, and manually upgrade xplr when a new version is available. One way to keep an eye on the releases is to watch the repository .","breadcrumbs":"Quickstart » Install » Install","id":"7","title":"Install"},"70":{"body":"YAML: ExploreParentsAsync Explore the present working directory along with its parents and register the filtered nodes. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore just the $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExploreParentsAsync\"","id":"70","title":"\"ExploreParentsAsync\""},"71":{"body":"YAML: Refresh Refresh the UI. But it will not re-explore the directory if the working directory is the same. If there is some change in the working directory and you want to re-explore it, use the Explore message instead. Also, it will not clear the screen. Use ClearScreen for that.","breadcrumbs":"Configuration » Message » \"Refresh\"","id":"71","title":"\"Refresh\""},"72":{"body":"YAML: ClearScreen Clears the screen.","breadcrumbs":"Configuration » Message » \"ClearScreen\"","id":"72","title":"\"ClearScreen\""},"73":{"body":"YAML: FocusNext Focus next node.","breadcrumbs":"Configuration » Message » \"FocusNext\"","id":"73","title":"\"FocusNext\""},"74":{"body":"YAML: FocusNextByRelativeIndex: int Focus on the nth node relative to the current focus where n is a given value. YAML Example: FocusNextByRelativeIndex: 2 Lua Example: { FocusNextByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusNextByRelativeIndex = int }","id":"74","title":"{ FocusNextByRelativeIndex = int }"},"75":{"body":"YAML: FocusNextByRelativeIndexFromInput Focus on the nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusNextByRelativeIndexFromInput\"","id":"75","title":"\"FocusNextByRelativeIndexFromInput\""},"76":{"body":"YAML: FocusPrevious Focus on the previous item.","breadcrumbs":"Configuration » Message » \"FocusPrevious\"","id":"76","title":"\"FocusPrevious\""},"77":{"body":"YAML: FocusPreviousByRelativeIndex: int Focus on the -nth node relative to the current focus where n is a given value. YAML Example: FocusPreviousByRelativeIndex: 2 Lua Example: { FocusPreviousByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusPreviousByRelativeIndex = int }","id":"77","title":"{ FocusPreviousByRelativeIndex = int }"},"78":{"body":"YAML: FocusPreviousByRelativeIndexFromInput Focus on the -nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusPreviousByRelativeIndexFromInput\"","id":"78","title":"\"FocusPreviousByRelativeIndexFromInput\""},"79":{"body":"YAML: FocusFirst Focus on the first node.","breadcrumbs":"Configuration » Message » \"FocusFirst\"","id":"79","title":"\"FocusFirst\""},"8":{"body":"xplr can be installed from one of the following community maintained repositories: packaging status","breadcrumbs":"Quickstart » Install » Community Maintained Repositories","id":"8","title":"Community Maintained Repositories"},"80":{"body":"YAML: FocusLast Focus on the last node.","breadcrumbs":"Configuration » Message » \"FocusLast\"","id":"80","title":"\"FocusLast\""},"81":{"body":"YAML: FocusPath: string Focus on the given path. YAML Example: FocusPath: /path/to/file Lua Example: { FocusPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { FocusPath = \"string\" }","id":"81","title":"{ FocusPath = \"string\" }"},"82":{"body":"YAML: FocusPathFromInput Focus on the path read from input buffer.","breadcrumbs":"Configuration » Message » \"FocusPathFromInput\"","id":"82","title":"\"FocusPathFromInput\""},"83":{"body":"YAML: FocusByIndex: int Focus on the absolute nth node where n is a given value. YAML Example: FocusByIndex: 2 Lua Example: { FocusByIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusByIndex = int }","id":"83","title":"{ FocusByIndex = int }"},"84":{"body":"YAML: FocusByIndexFromInput Focus on the absolute nth node where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusByIndexFromInput\"","id":"84","title":"\"FocusByIndexFromInput\""},"85":{"body":"YAML: FocusByFileName: string Focus on the file by name from the present working directory. YAML Example: FocusByFileName: filename.ext Lua Example: { FocusByFileName = \"filename.ext\" }","breadcrumbs":"Configuration » Message » { FocusByFileName = \"string\" }","id":"85","title":"{ FocusByFileName = \"string\" }"},"86":{"body":"YAML: ChangeDirectory: string Change the present working directory ($PWD) YAML Example: ChangeDirectory: /path/to/directory Lua Example: { ChangeDirectory = \"/path/to/directory\" }","breadcrumbs":"Configuration » Message » { ChangeDirectory = \"string\" }","id":"86","title":"{ ChangeDirectory = \"string\" }"},"87":{"body":"YAML: Enter Enter into the currently focused path if it's a directory.","breadcrumbs":"Configuration » Message » \"Enter\"","id":"87","title":"\"Enter\""},"88":{"body":"YAML: Back Go back to the parent directory.","breadcrumbs":"Configuration » Message » \"Back\"","id":"88","title":"\"Back\""},"89":{"body":"YAML: LastVisitedPath Go to the last path visited.","breadcrumbs":"Configuration » Message » \"LastVisitedPath\"","id":"89","title":"\"LastVisitedPath\""},"9":{"body":"Official Community Repo sudo pacman -S xplr AUR Binary version: paru -S xplr-bin Git version: paru -S xplr-git","breadcrumbs":"Quickstart » Install » Arch Linux","id":"9","title":"Arch Linux"},"90":{"body":"YAML: NextVisitedPath Go to the next path visited.","breadcrumbs":"Configuration » Message » \"NextVisitedPath\"","id":"90","title":"\"NextVisitedPath\""},"91":{"body":"YAML: FollowSymlink Follow the symlink under focus to its actual location.","breadcrumbs":"Configuration » Message » \"FollowSymlink\"","id":"91","title":"\"FollowSymlink\""},"92":{"body":"YAML: BufferInput(String) Append/buffer the given string into the input buffer. YAML Example: BufferInput: foo Lua Example: { BufferInput = \"foo\" }","breadcrumbs":"Configuration » Message » { BufferInput = \"string\" }","id":"92","title":"{ BufferInput = \"string\" }"},"93":{"body":"YAML: BufferInputFromKey Append/buffer the characted read from a keyboard input into the input buffer.","breadcrumbs":"Configuration » Message » \"BufferInputFromKey\"","id":"93","title":"\"BufferInputFromKey\""},"94":{"body":"YAML: SetInputBuffer: string Set/rewrite the input buffer with the given string. When the input buffer is not-null (even if empty string) it will show in the UI. YAML Example: SetInputBuffer: foo Lua Example: { SetInputBuffer = \"foo\" }","breadcrumbs":"Configuration » Message » { SetInputBuffer = \"string\" }","id":"94","title":"{ SetInputBuffer = \"string\" }"},"95":{"body":"YAML: RemoveInputBufferLastCharacter Remove input buffer's last character.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastCharacter\"","id":"95","title":"\"RemoveInputBufferLastCharacter\""},"96":{"body":"YAML: RemoveInputBufferLastWord Remove input buffer's last word.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastWord\"","id":"96","title":"\"RemoveInputBufferLastWord\""},"97":{"body":"YAML: ResetInputBuffer Reset the input buffer back to null. It will not show in the UI.","breadcrumbs":"Configuration » Message » \"ResetInputBuffer\"","id":"97","title":"\"ResetInputBuffer\""},"98":{"body":"YAML: SwitchMode: string Switch input mode . NOTE: To be specific about which mode to switch to, use SwitchModeBuiltin or SwitchModeCustom instead. YAML Example: SwitchMode: default Lua Example: { SwitchMode = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchMode = \"string\" }","id":"98","title":"{ SwitchMode = \"string\" }"},"99":{"body":"YAML: SwitchModeBuiltin: string Switch to a builtin mode . YAML Example: SwitchModeBuiltin: default Lua Example: { SwitchModeBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchModeBuiltin = \"string\" }","id":"99","title":"{ SwitchModeBuiltin = \"string\" }"}},"length":318,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"314":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"314":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"315":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"315":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"304":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":10,"docs":{"2":{"tf":1.0},"273":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"316":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"317":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"315":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.0},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"304":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"305":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":7,"docs":{"242":{"tf":1.7320508075688772},"272":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":25,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"21":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":5.196152422706632},"41":{"tf":1.0},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"315":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.0},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.23606797749979},"315":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":28,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"306":{"tf":1.0},"317":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"317":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"315":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"304":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"304":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"312":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"315":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"314":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":67,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"315":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"215":{"tf":2.0},"220":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"315":{"tf":1.0}}}},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":2.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":2.449489742783178},"306":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"314":{"tf":2.0},"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"304":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"314":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"305":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":14,"docs":{"107":{"tf":2.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"304":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"315":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"311":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"315":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"305":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"312":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"314":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"315":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"305":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":31,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"313":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.4142135623730951},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.0}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"a":{"df":53,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"315":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"313":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"312":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"241":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"243":{"tf":1.0},"269":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"303":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":26,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":3.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"315":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"315":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":1,"docs":{"303":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":7,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":4.0},"316":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"303":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":78,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}},"e":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"315":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"317":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":1,"docs":{"304":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"314":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":1.7320508075688772},"243":{"tf":1.0},"256":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":12,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":2.23606797749979},"312":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"315":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"2":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"303":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"317":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"316":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.4142135623730951}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"304":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"315":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}},"df":1,"docs":{"304":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"315":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"316":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"315":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.0},"315":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.0},"133":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"315":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"314":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":26,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"304":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"315":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"315":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.0},"315":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.4142135623730951}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":2.449489742783178},"315":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"315":{"tf":2.0},"98":{"tf":2.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"315":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.0},"315":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"315":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"278":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":20,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"312":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"312":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.0},"315":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.0},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":1,"docs":{"117":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"304":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"315":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"311":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"315":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":4,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.0}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"314":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"314":{"tf":1.4142135623730951},"315":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":37,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":3.3166247903554},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"315":{"tf":1.0}}},"7":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"315":{"tf":1.0}}},"5":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"315":{"tf":2.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"314":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"105":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"301":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":3.4641016151377544},"315":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"314":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":3.605551275463989},"317":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"314":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"306":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"317":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.7320508075688772},"301":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":2.23606797749979},"317":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"304":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"314":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"314":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"315":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"313":{"tf":2.0},"315":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"315":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":2.0},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"304":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":28,"docs":{"2":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":2.0},"19":{"tf":1.0},"316":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"317":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"315":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.23606797749979},"188":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.4142135623730951},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"304":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"305":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":36,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":2.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":42,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":5.196152422706632},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":256,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"315":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.23606797749979},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.7320508075688772},"21":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.449489742783178},"315":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":44,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":2.0},"312":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"306":{"tf":1.0},"317":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"317":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.7320508075688772},"304":{"tf":1.7320508075688772},"315":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"304":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.23606797749979},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"304":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"304":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"312":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"315":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":2.0},"189":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"314":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":67,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"315":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"315":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"315":{"tf":1.0},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"315":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"215":{"tf":2.0},"220":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.7320508075688772},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"315":{"tf":1.0}}}},"r":{"df":2,"docs":{"312":{"tf":1.0},"315":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"315":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"315":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.23606797749979},"215":{"tf":2.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"29":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":2.449489742783178},"306":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"121":{"tf":3.0},"122":{"tf":3.0},"123":{"tf":3.0},"124":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"290":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"314":{"tf":2.0},"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"304":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"317":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"314":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"305":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"314":{"tf":1.0},"315":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":14,"docs":{"107":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"304":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":27,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"315":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"311":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"315":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"314":{"tf":2.0},"315":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"315":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"305":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"312":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"314":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"303":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":2.23606797749979},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"t":{"df":6,"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}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"243":{"tf":1.0},"249":{"tf":1.4142135623730951}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951},"243":{"tf":1.0},"251":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"315":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"305":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":2.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":2.8284271247461903},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"313":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.23606797749979}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"317":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.23606797749979},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.23606797749979},"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"a":{"df":53,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"315":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"313":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"312":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":133,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"241":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"315":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"243":{"tf":1.0},"253":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"303":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":2.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":3.3166247903554},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"315":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"315":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":1,"docs":{"303":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":7,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":4.0},"316":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"303":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"df":84,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.449489742783178},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}},"e":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"315":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"314":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"315":{"tf":1.0},"317":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"315":{"tf":1.0}}},"t":{"df":1,"docs":{"304":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"315":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"314":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":2.0},"243":{"tf":1.0},"256":{"tf":2.0},"270":{"tf":1.7320508075688772}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":12,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"312":{"tf":1.0},"315":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"315":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"2":{"tf":1.0},"292":{"tf":2.449489742783178},"293":{"tf":2.8284271247461903},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"299":{"tf":2.0},"300":{"tf":2.0},"301":{"tf":2.449489742783178},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"317":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"316":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.7320508075688772}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"315":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"304":{"tf":1.7320508075688772},"312":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"315":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":2.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"190":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}},"df":1,"docs":{"304":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"315":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"316":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.4142135623730951},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"315":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"315":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"315":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.23606797749979},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.23606797749979},"315":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.7320508075688772},"315":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"315":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"314":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"df":26,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":2.0},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"304":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"315":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":2.0},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":2.0},"132":{"tf":3.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"315":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.23606797749979},"315":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":16,"docs":{"222":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":2.449489742783178},"315":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"315":{"tf":2.0},"98":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"315":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.23606797749979},"315":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"315":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.0},"278":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":20,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.7320508075688772},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"3":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":2.0},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":2.0}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"312":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"302":{"tf":1.0},"305":{"tf":1.7320508075688772},"315":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"312":{"tf":1.7320508075688772},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.23606797749979},"315":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.23606797749979},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":1,"docs":{"117":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"304":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"315":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"311":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"315":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}},"df":4,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"314":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"314":{"tf":1.4142135623730951},"315":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":37,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":3.3166247903554},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"315":{"tf":1.0}}},"7":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"315":{"tf":1.0}}},"5":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"315":{"tf":2.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"2":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"314":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"105":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"301":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":3.4641016151377544},"315":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.7320508075688772},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"314":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":3.605551275463989},"317":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"314":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"306":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"317":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"304":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"315":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"315":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":2.23606797749979},"317":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"304":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"title":{"root":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"246":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"61":{"tf":1.0}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"243":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"301":{"tf":1.0},"307":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"273":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"155":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"107":{"tf":1.0},"156":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"257":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"158":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"197":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"216":{"tf":1.0},"284":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"300":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"175":{"tf":1.0},"220":{"tf":1.0},"247":{"tf":1.0},"303":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"217":{"tf":1.0},"283":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"278":{"tf":1.0}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"293":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"250":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"251":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"252":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"181":{"tf":1.0},"219":{"tf":1.0},"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"163":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"295":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"64":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"280":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"244":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"188":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"275":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"242":{"tf":1.0},"243":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"235":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":4,"docs":{"111":{"tf":1.0},"162":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"232":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":30,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"291":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"186":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"243":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["introduction.html#introduction","introduction.html#features","introduction.html#hackable","introduction.html#fast","introduction.html#minimalist","introduction.html#other-features","quickstart.html#quickstart","install.html#install","install.html#community-maintained-repositories","install.html#arch-linux","install.html#void-linux","install.html#nixos","install.html#macos","install.html#freebsd","install.html#netbsd","install.html#direct-download","install.html#from--cratesio","install.html#build-from-source","install.html#android","install.html#termux","post-install.html#post-install","post-install.html#create-the-customizable-config-file","post-install.html#run","configuration.html#configuration","configuration.html#how-config-is-loaded","configuration.html#config","general-config.html#general-config","general-config.html#enable_mouse","general-config.html#show_hidden","general-config.html#read_only","general-config.html#disable_recover_mode","general-config.html#cursorformat","general-config.html#cursorstyle","general-config.html#initial_layout","general-config.html#initial_mode","general-config.html#initial_sorting","general-config.html#tablestyle","general-config.html#tablecol_spacing","general-config.html#tablecol_widths","general-config.html#tableheaderheight","general-config.html#tableheaderstyle","general-config.html#tableheadercols","general-config.html#tablerowheight","general-config.html#tablerowstyle","general-config.html#tablerowcols","general-config.html#tabletree","modes.html#modes","modes.html#builtin","modes.html#custom","modes.html#mode","modes.html#name","modes.html#help","modes.html#extra_help","modes.html#key_bindings","modes.html#key-bindings","modes.html#on_key","modes.html#on_alphabet","modes.html#on_number","modes.html#on_special_character","modes.html#default","modes.html#key","modes.html#action","modes.html#help","modes.html#messages","modes.html#tutorial-adding-a-new-mode","message.html#message","message.html#format","message.html#full-list-of-messages","message.html#explorepwd","message.html#explorepwdasync","message.html#exploreparentsasync","message.html#refresh","message.html#clearscreen","message.html#focusnext","message.html#-focusnextbyrelativeindex--int-","message.html#focusnextbyrelativeindexfrominput","message.html#focusprevious","message.html#-focuspreviousbyrelativeindex--int-","message.html#focuspreviousbyrelativeindexfrominput","message.html#focusfirst","message.html#focuslast","message.html#-focuspath--string-","message.html#focuspathfrominput","message.html#-focusbyindex--int-","message.html#focusbyindexfrominput","message.html#-focusbyfilename--string-","message.html#-changedirectory--string-","message.html#enter","message.html#back","message.html#lastvisitedpath","message.html#nextvisitedpath","message.html#followsymlink","message.html#-bufferinput--string-","message.html#bufferinputfromkey","message.html#-setinputbuffer--string-","message.html#removeinputbufferlastcharacter","message.html#removeinputbufferlastword","message.html#resetinputbuffer","message.html#-switchmode--string-","message.html#-switchmodebuiltin--string-","message.html#-switchmodecustom--string-","message.html#popmode","message.html#-switchlayout--string-","message.html#-switchlayoutbuiltin--string-","message.html#-switchlayoutcustom--string-","message.html#-call--string-","message.html#-callsilently--string-","message.html#-calllua--string-","message.html#-callluasilently--string-","message.html#-bashexec--string-","message.html#-bashexecsilently--string-","message.html#select","message.html#selectall","message.html#-selectpath--string-","message.html#unselect","message.html#unselectall","message.html#-unselectpath--string-","message.html#toggleselection","message.html#toggleselectall","message.html#-toggleselectionbypath--string-","message.html#clearselection","message.html#-addnodefilter---filter---filter--input--string-","message.html#-removenodefilter---filter---filter--input--string-","message.html#-togglenodefilter---filter---filter--input--string-","message.html#-addnodefilterfrominput---filter--","message.html#-removenodefilterfrominput---filter--","message.html#removelastnodefilter","message.html#resetnodefilters","message.html#clearnodefilters","message.html#-addnodesorter---sorter---sorter--reverse--bool--","message.html#-removenodesorter---sorter--","message.html#-reversenodesorter---sorter--","message.html#-togglenodesorter---sorter---sorter--reverse--bool--","message.html#reversenodesorters","message.html#removelastnodesorter","message.html#resetnodesorters","message.html#clearnodesorters","message.html#enablemouse","message.html#disablemouse","message.html#togglemouse","message.html#-startfifo--string-","message.html#stopfifo","message.html#-togglefifo--string-","message.html#-loginfo--string-","message.html#-logsuccess--string-","message.html#-logwarning--string-","message.html#-logerror--string-","message.html#quit","message.html#printpwdandquit","message.html#printfocuspathandquit","message.html#printselectionandquit","message.html#printresultandquit","message.html#printappstateandquit","message.html#-debug--string-","message.html#terminate","message.html#lua-function-calls","message.html#calllua-argument","message.html#version","message.html#config","message.html#pwd","message.html#focused_node","message.html#directory_buffer","message.html#selection","message.html#mode","message.html#layout","message.html#input_buffer","message.html#pid","message.html#session_path","message.html#explorer_config","message.html#history","message.html#last_modes","message.html#node","message.html#parent","message.html#relative_path","message.html#absolute_path","message.html#extension","message.html#is_symlink","message.html#is_broken","message.html#is_dir","message.html#is_file","message.html#is_readonly","message.html#mime_essence","message.html#size","message.html#human_size","message.html#permissions","message.html#canonical","message.html#symlink","message.html#example-using-lua-function-calls","message.html#environment-variables-and-pipes","message.html#environment-variables","message.html#example-using-environment-variables-and-pipes","layouts.html#layouts","layouts.html#builtin","layouts.html#default","layouts.html#no_help","layouts.html#no_selection","layouts.html#no_help_no_selection","layouts.html#custom","layouts.html#layout","layouts.html#nothing","layouts.html#table","layouts.html#inputandlogs","layouts.html#selection","layouts.html#helpmenu","layouts.html#sortandfilter","layouts.html#horizontal","layouts.html#vertical","layouts.html#layout-config","layouts.html#margin","layouts.html#horizontal_margin","layouts.html#vertical_margin","layouts.html#constraints","layouts.html#constraint","layouts.html#splits","layouts.html#example","node_types.html#node-types","node_types.html#directory","node_types.html#file","node_types.html#symlink","node_types.html#mime_essence","node_types.html#extension","node_types.html#special","node_types.html#nodetype-config","node_types.html#meta","style.html#style","style.html#fg","style.html#bg","style.html#add_modifiers","style.html#sub_modifiers","style.html#color","style.html#modifier","style.html#example","sorting.html#sorting","sorting.html#node-sorter-applicable","sorting.html#sorter","sorting.html#reverse","sorting.html#example","filtering.html#filtering","filtering.html#node-filter-applicable","filtering.html#filter","filtering.html#input","filtering.html#example","column-renderer.html#column-renderer","column-renderer.html#table-renderer-argument","column-renderer.html#parent","column-renderer.html#relative_path","column-renderer.html#absolute_path","column-renderer.html#extension","column-renderer.html#is_symlink","column-renderer.html#is_broken","column-renderer.html#is_dir","column-renderer.html#is_file","column-renderer.html#is_readonly","column-renderer.html#mime_essence","column-renderer.html#size","column-renderer.html#human_size","column-renderer.html#permissions","column-renderer.html#canonical","column-renderer.html#symlink","column-renderer.html#index","column-renderer.html#relative_index","column-renderer.html#is_before_focus","column-renderer.html#is_after_focus","column-renderer.html#tree","column-renderer.html#prefix","column-renderer.html#suffix","column-renderer.html#is_selected","column-renderer.html#is_focused","column-renderer.html#total","column-renderer.html#meta","column-renderer.html#permission","column-renderer.html#resolved-node-metadata","column-renderer.html#example-customizing-table-renderer","default-key-bindings.html#default-key-bindings","default-key-bindings.html#default","default-key-bindings.html#recover","default-key-bindings.html#filter","default-key-bindings.html#number","default-key-bindings.html#go-to","default-key-bindings.html#search","default-key-bindings.html#selection-ops","default-key-bindings.html#action-to","default-key-bindings.html#create","default-key-bindings.html#create-file","default-key-bindings.html#create-directory","default-key-bindings.html#rename","default-key-bindings.html#delete","default-key-bindings.html#sort","default-key-bindings.html#filter","default-key-bindings.html#relative-path-does-contain","default-key-bindings.html#relative-path-does-not-contain","default-key-bindings.html#switch-layout","plugin.html#plugin","installing-plugins.html#installing-plugins","writing-plugins.html#writing-plugins","writing-plugins.html#naming","writing-plugins.html#structure","writing-plugins.html#readmemd","writing-plugins.html#srcinitlua","writing-plugins.html#publishing","writing-plugins.html#examples","writing-plugins.html#also-see","awesome-plugins.html#awesome-plugins","awesome-plugins.html#categories","awesome-plugins.html#extension","awesome-plugins.html#integration","awesome-plugins.html#theme","integration.html#integration","awesome-integrations.html#awesome-integrations","awesome-integrations.html#categories","awesome-integrations.html#editor","awesome-integrations.html#shell","awesome-integrations.html#security-tools","todo.html#todo","alternatives.html#alternatives","upgrade-guide.html#upgrade-guide","upgrade-guide.html#instructions","community.html#community","contribute.html#backers"],"index":{"documentStore":{"docInfo":{"0":{"body":64,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":3,"breadcrumbs":4,"title":2},"100":{"body":14,"breadcrumbs":4,"title":2},"101":{"body":7,"breadcrumbs":3,"title":1},"102":{"body":21,"breadcrumbs":4,"title":2},"103":{"body":14,"breadcrumbs":4,"title":2},"104":{"body":14,"breadcrumbs":4,"title":2},"105":{"body":43,"breadcrumbs":4,"title":2},"106":{"body":28,"breadcrumbs":4,"title":2},"107":{"body":28,"breadcrumbs":4,"title":2},"108":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":27,"breadcrumbs":4,"title":2},"11":{"body":7,"breadcrumbs":3,"title":1},"110":{"body":23,"breadcrumbs":4,"title":2},"111":{"body":5,"breadcrumbs":3,"title":1},"112":{"body":5,"breadcrumbs":3,"title":1},"113":{"body":14,"breadcrumbs":4,"title":2},"114":{"body":5,"breadcrumbs":3,"title":1},"115":{"body":5,"breadcrumbs":3,"title":1},"116":{"body":14,"breadcrumbs":4,"title":2},"117":{"body":6,"breadcrumbs":3,"title":1},"118":{"body":6,"breadcrumbs":3,"title":1},"119":{"body":15,"breadcrumbs":4,"title":2},"12":{"body":20,"breadcrumbs":3,"title":1},"120":{"body":4,"breadcrumbs":3,"title":1},"121":{"body":26,"breadcrumbs":7,"title":5},"122":{"body":23,"breadcrumbs":7,"title":5},"123":{"body":24,"breadcrumbs":7,"title":5},"124":{"body":17,"breadcrumbs":4,"title":2},"125":{"body":17,"breadcrumbs":4,"title":2},"126":{"body":6,"breadcrumbs":3,"title":1},"127":{"body":8,"breadcrumbs":3,"title":1},"128":{"body":5,"breadcrumbs":3,"title":1},"129":{"body":26,"breadcrumbs":7,"title":5},"13":{"body":9,"breadcrumbs":3,"title":1},"130":{"body":14,"breadcrumbs":4,"title":2},"131":{"body":14,"breadcrumbs":4,"title":2},"132":{"body":24,"breadcrumbs":7,"title":5},"133":{"body":5,"breadcrumbs":3,"title":1},"134":{"body":6,"breadcrumbs":3,"title":1},"135":{"body":8,"breadcrumbs":3,"title":1},"136":{"body":5,"breadcrumbs":3,"title":1},"137":{"body":4,"breadcrumbs":3,"title":1},"138":{"body":4,"breadcrumbs":3,"title":1},"139":{"body":4,"breadcrumbs":3,"title":1},"14":{"body":8,"breadcrumbs":3,"title":1},"140":{"body":18,"breadcrumbs":4,"title":2},"141":{"body":7,"breadcrumbs":3,"title":1},"142":{"body":14,"breadcrumbs":4,"title":2},"143":{"body":16,"breadcrumbs":4,"title":2},"144":{"body":18,"breadcrumbs":4,"title":2},"145":{"body":16,"breadcrumbs":4,"title":2},"146":{"body":16,"breadcrumbs":4,"title":2},"147":{"body":6,"breadcrumbs":3,"title":1},"148":{"body":5,"breadcrumbs":3,"title":1},"149":{"body":12,"breadcrumbs":3,"title":1},"15":{"body":34,"breadcrumbs":4,"title":2},"150":{"body":9,"breadcrumbs":3,"title":1},"151":{"body":11,"breadcrumbs":3,"title":1},"152":{"body":13,"breadcrumbs":3,"title":1},"153":{"body":19,"breadcrumbs":4,"title":2},"154":{"body":8,"breadcrumbs":3,"title":1},"155":{"body":31,"breadcrumbs":5,"title":3},"156":{"body":27,"breadcrumbs":4,"title":2},"157":{"body":7,"breadcrumbs":3,"title":1},"158":{"body":2,"breadcrumbs":3,"title":1},"159":{"body":5,"breadcrumbs":3,"title":1},"16":{"body":12,"breadcrumbs":3,"title":1},"160":{"body":6,"breadcrumbs":3,"title":1},"161":{"body":1,"breadcrumbs":3,"title":1},"162":{"body":7,"breadcrumbs":3,"title":1},"163":{"body":4,"breadcrumbs":3,"title":1},"164":{"body":4,"breadcrumbs":3,"title":1},"165":{"body":5,"breadcrumbs":3,"title":1},"166":{"body":5,"breadcrumbs":3,"title":1},"167":{"body":4,"breadcrumbs":3,"title":1},"168":{"body":1,"breadcrumbs":3,"title":1},"169":{"body":1,"breadcrumbs":3,"title":1},"17":{"body":28,"breadcrumbs":4,"title":2},"170":{"body":6,"breadcrumbs":3,"title":1},"171":{"body":19,"breadcrumbs":3,"title":1},"172":{"body":5,"breadcrumbs":3,"title":1},"173":{"body":9,"breadcrumbs":3,"title":1},"174":{"body":8,"breadcrumbs":3,"title":1},"175":{"body":4,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":6,"breadcrumbs":3,"title":1},"178":{"body":5,"breadcrumbs":3,"title":1},"179":{"body":5,"breadcrumbs":3,"title":1},"18":{"body":0,"breadcrumbs":3,"title":1},"180":{"body":5,"breadcrumbs":3,"title":1},"181":{"body":9,"breadcrumbs":3,"title":1},"182":{"body":10,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":5,"breadcrumbs":3,"title":1},"185":{"body":19,"breadcrumbs":3,"title":1},"186":{"body":20,"breadcrumbs":3,"title":1},"187":{"body":48,"breadcrumbs":7,"title":5},"188":{"body":44,"breadcrumbs":5,"title":3},"189":{"body":131,"breadcrumbs":4,"title":2},"19":{"body":51,"breadcrumbs":3,"title":1},"190":{"body":35,"breadcrumbs":7,"title":5},"191":{"body":30,"breadcrumbs":3,"title":1},"192":{"body":17,"breadcrumbs":3,"title":1},"193":{"body":7,"breadcrumbs":3,"title":1},"194":{"body":6,"breadcrumbs":3,"title":1},"195":{"body":6,"breadcrumbs":3,"title":1},"196":{"body":9,"breadcrumbs":3,"title":1},"197":{"body":22,"breadcrumbs":3,"title":1},"198":{"body":21,"breadcrumbs":3,"title":1},"199":{"body":4,"breadcrumbs":3,"title":1},"2":{"body":24,"breadcrumbs":2,"title":1},"20":{"body":8,"breadcrumbs":5,"title":2},"200":{"body":8,"breadcrumbs":3,"title":1},"201":{"body":7,"breadcrumbs":3,"title":1},"202":{"body":6,"breadcrumbs":3,"title":1},"203":{"body":10,"breadcrumbs":3,"title":1},"204":{"body":12,"breadcrumbs":3,"title":1},"205":{"body":12,"breadcrumbs":3,"title":1},"206":{"body":12,"breadcrumbs":3,"title":1},"207":{"body":9,"breadcrumbs":4,"title":2},"208":{"body":6,"breadcrumbs":3,"title":1},"209":{"body":9,"breadcrumbs":3,"title":1},"21":{"body":59,"breadcrumbs":7,"title":4},"210":{"body":9,"breadcrumbs":3,"title":1},"211":{"body":7,"breadcrumbs":3,"title":1},"212":{"body":42,"breadcrumbs":3,"title":1},"213":{"body":9,"breadcrumbs":3,"title":1},"214":{"body":18,"breadcrumbs":3,"title":1},"215":{"body":50,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":4,"title":1},"217":{"body":16,"breadcrumbs":4,"title":1},"218":{"body":12,"breadcrumbs":4,"title":1},"219":{"body":43,"breadcrumbs":4,"title":1},"22":{"body":1,"breadcrumbs":4,"title":1},"220":{"body":19,"breadcrumbs":4,"title":1},"221":{"body":20,"breadcrumbs":4,"title":1},"222":{"body":8,"breadcrumbs":5,"title":2},"223":{"body":25,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":3,"title":1},"225":{"body":5,"breadcrumbs":3,"title":1},"226":{"body":5,"breadcrumbs":3,"title":1},"227":{"body":6,"breadcrumbs":3,"title":1},"228":{"body":6,"breadcrumbs":3,"title":1},"229":{"body":26,"breadcrumbs":3,"title":1},"23":{"body":47,"breadcrumbs":2,"title":1},"230":{"body":12,"breadcrumbs":3,"title":1},"231":{"body":12,"breadcrumbs":3,"title":1},"232":{"body":52,"breadcrumbs":3,"title":1},"233":{"body":5,"breadcrumbs":5,"title":3},"234":{"body":32,"breadcrumbs":3,"title":1},"235":{"body":5,"breadcrumbs":3,"title":1},"236":{"body":17,"breadcrumbs":3,"title":1},"237":{"body":51,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":5,"title":3},"239":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":22,"breadcrumbs":3,"title":2},"240":{"body":4,"breadcrumbs":3,"title":1},"241":{"body":12,"breadcrumbs":3,"title":1},"242":{"body":36,"breadcrumbs":5,"title":2},"243":{"body":31,"breadcrumbs":6,"title":3},"244":{"body":5,"breadcrumbs":4,"title":1},"245":{"body":9,"breadcrumbs":4,"title":1},"246":{"body":8,"breadcrumbs":4,"title":1},"247":{"body":4,"breadcrumbs":4,"title":1},"248":{"body":5,"breadcrumbs":4,"title":1},"249":{"body":6,"breadcrumbs":4,"title":1},"25":{"body":13,"breadcrumbs":2,"title":1},"250":{"body":5,"breadcrumbs":4,"title":1},"251":{"body":5,"breadcrumbs":4,"title":1},"252":{"body":5,"breadcrumbs":4,"title":1},"253":{"body":9,"breadcrumbs":4,"title":1},"254":{"body":10,"breadcrumbs":4,"title":1},"255":{"body":6,"breadcrumbs":4,"title":1},"256":{"body":5,"breadcrumbs":4,"title":1},"257":{"body":19,"breadcrumbs":4,"title":1},"258":{"body":20,"breadcrumbs":4,"title":1},"259":{"body":6,"breadcrumbs":4,"title":1},"26":{"body":8,"breadcrumbs":5,"title":2},"260":{"body":9,"breadcrumbs":4,"title":1},"261":{"body":7,"breadcrumbs":4,"title":1},"262":{"body":6,"breadcrumbs":4,"title":1},"263":{"body":7,"breadcrumbs":4,"title":1},"264":{"body":5,"breadcrumbs":4,"title":1},"265":{"body":5,"breadcrumbs":4,"title":1},"266":{"body":5,"breadcrumbs":4,"title":1},"267":{"body":6,"breadcrumbs":4,"title":1},"268":{"body":5,"breadcrumbs":4,"title":1},"269":{"body":8,"breadcrumbs":4,"title":1},"27":{"body":8,"breadcrumbs":4,"title":1},"270":{"body":21,"breadcrumbs":4,"title":1},"271":{"body":11,"breadcrumbs":6,"title":3},"272":{"body":23,"breadcrumbs":7,"title":4},"273":{"body":25,"breadcrumbs":6,"title":3},"274":{"body":79,"breadcrumbs":4,"title":1},"275":{"body":8,"breadcrumbs":4,"title":1},"276":{"body":27,"breadcrumbs":4,"title":1},"277":{"body":32,"breadcrumbs":4,"title":1},"278":{"body":16,"breadcrumbs":4,"title":1},"279":{"body":37,"breadcrumbs":4,"title":1},"28":{"body":7,"breadcrumbs":4,"title":1},"280":{"body":17,"breadcrumbs":5,"title":2},"281":{"body":29,"breadcrumbs":4,"title":1},"282":{"body":14,"breadcrumbs":4,"title":1},"283":{"body":24,"breadcrumbs":5,"title":2},"284":{"body":24,"breadcrumbs":5,"title":2},"285":{"body":23,"breadcrumbs":4,"title":1},"286":{"body":13,"breadcrumbs":4,"title":1},"287":{"body":58,"breadcrumbs":4,"title":1},"288":{"body":27,"breadcrumbs":4,"title":1},"289":{"body":24,"breadcrumbs":6,"title":3},"29":{"body":16,"breadcrumbs":4,"title":1},"290":{"body":24,"breadcrumbs":6,"title":3},"291":{"body":19,"breadcrumbs":5,"title":2},"292":{"body":18,"breadcrumbs":2,"title":1},"293":{"body":44,"breadcrumbs":5,"title":2},"294":{"body":11,"breadcrumbs":5,"title":2},"295":{"body":14,"breadcrumbs":4,"title":1},"296":{"body":12,"breadcrumbs":4,"title":1},"297":{"body":4,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":4,"title":1},"299":{"body":23,"breadcrumbs":4,"title":1},"3":{"body":59,"breadcrumbs":2,"title":1},"30":{"body":19,"breadcrumbs":4,"title":1},"300":{"body":6,"breadcrumbs":4,"title":1},"301":{"body":18,"breadcrumbs":4,"title":1},"302":{"body":16,"breadcrumbs":5,"title":2},"303":{"body":3,"breadcrumbs":4,"title":1},"304":{"body":22,"breadcrumbs":4,"title":1},"305":{"body":84,"breadcrumbs":4,"title":1},"306":{"body":20,"breadcrumbs":4,"title":1},"307":{"body":14,"breadcrumbs":2,"title":1},"308":{"body":14,"breadcrumbs":5,"title":2},"309":{"body":4,"breadcrumbs":4,"title":1},"31":{"body":10,"breadcrumbs":4,"title":1},"310":{"body":3,"breadcrumbs":4,"title":1},"311":{"body":1,"breadcrumbs":4,"title":1},"312":{"body":2,"breadcrumbs":5,"title":2},"313":{"body":81,"breadcrumbs":2,"title":1},"314":{"body":25,"breadcrumbs":2,"title":1},"315":{"body":142,"breadcrumbs":4,"title":2},"316":{"body":817,"breadcrumbs":3,"title":1},"317":{"body":40,"breadcrumbs":2,"title":1},"318":{"body":69,"breadcrumbs":2,"title":1},"32":{"body":4,"breadcrumbs":4,"title":1},"33":{"body":8,"breadcrumbs":4,"title":1},"34":{"body":8,"breadcrumbs":4,"title":1},"35":{"body":12,"breadcrumbs":4,"title":1},"36":{"body":5,"breadcrumbs":4,"title":1},"37":{"body":7,"breadcrumbs":4,"title":1},"38":{"body":8,"breadcrumbs":4,"title":1},"39":{"body":6,"breadcrumbs":4,"title":1},"4":{"body":42,"breadcrumbs":2,"title":1},"40":{"body":5,"breadcrumbs":4,"title":1},"41":{"body":18,"breadcrumbs":4,"title":1},"42":{"body":7,"breadcrumbs":4,"title":1},"43":{"body":5,"breadcrumbs":4,"title":1},"44":{"body":23,"breadcrumbs":4,"title":1},"45":{"body":62,"breadcrumbs":4,"title":1},"46":{"body":35,"breadcrumbs":3,"title":1},"47":{"body":38,"breadcrumbs":3,"title":1},"48":{"body":37,"breadcrumbs":3,"title":1},"49":{"body":8,"breadcrumbs":3,"title":1},"5":{"body":256,"breadcrumbs":2,"title":1},"50":{"body":7,"breadcrumbs":3,"title":1},"51":{"body":11,"breadcrumbs":3,"title":1},"52":{"body":13,"breadcrumbs":3,"title":1},"53":{"body":7,"breadcrumbs":3,"title":1},"54":{"body":24,"breadcrumbs":4,"title":2},"55":{"body":9,"breadcrumbs":3,"title":1},"56":{"body":12,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":13,"breadcrumbs":3,"title":1},"59":{"body":16,"breadcrumbs":3,"title":1},"6":{"body":12,"breadcrumbs":2,"title":1},"60":{"body":46,"breadcrumbs":3,"title":1},"61":{"body":6,"breadcrumbs":3,"title":1},"62":{"body":8,"breadcrumbs":3,"title":1},"63":{"body":9,"breadcrumbs":3,"title":1},"64":{"body":134,"breadcrumbs":6,"title":4},"65":{"body":30,"breadcrumbs":3,"title":1},"66":{"body":47,"breadcrumbs":3,"title":1},"67":{"body":0,"breadcrumbs":5,"title":3},"68":{"body":14,"breadcrumbs":3,"title":1},"69":{"body":34,"breadcrumbs":3,"title":1},"7":{"body":44,"breadcrumbs":3,"title":1},"70":{"body":35,"breadcrumbs":3,"title":1},"71":{"body":24,"breadcrumbs":3,"title":1},"72":{"body":4,"breadcrumbs":3,"title":1},"73":{"body":5,"breadcrumbs":3,"title":1},"74":{"body":20,"breadcrumbs":4,"title":2},"75":{"body":12,"breadcrumbs":3,"title":1},"76":{"body":5,"breadcrumbs":3,"title":1},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":12,"breadcrumbs":3,"title":1},"79":{"body":5,"breadcrumbs":3,"title":1},"8":{"body":9,"breadcrumbs":5,"title":3},"80":{"body":5,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":4,"title":2},"82":{"body":7,"breadcrumbs":3,"title":1},"83":{"body":18,"breadcrumbs":4,"title":2},"84":{"body":10,"breadcrumbs":3,"title":1},"85":{"body":17,"breadcrumbs":4,"title":2},"86":{"body":16,"breadcrumbs":4,"title":2},"87":{"body":8,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":3,"title":1},"89":{"body":6,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":6,"breadcrumbs":3,"title":1},"91":{"body":8,"breadcrumbs":3,"title":1},"92":{"body":15,"breadcrumbs":4,"title":2},"93":{"body":9,"breadcrumbs":3,"title":1},"94":{"body":24,"breadcrumbs":4,"title":2},"95":{"body":7,"breadcrumbs":3,"title":1},"96":{"body":7,"breadcrumbs":3,"title":1},"97":{"body":9,"breadcrumbs":3,"title":1},"98":{"body":22,"breadcrumbs":4,"title":2},"99":{"body":14,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"xplr is a terminal UI based file explorer that aims to increase our terminal productivity by being a flexible, interactive orchestrator for the ever growing awesome command-line utilities that work with the file-system. To achieve its goal, xplr strives to be a fast, minimal and more importantly, hackable file explorer. xplr is not meant to be a replacement for the standard shell commands or the GUI file managers. Rather, it aims to integrate them all and expose an intuitive, scriptable, keyboard controlled, real-time visual interface, also being an ideal candidate for further integration, enabling the users to achieve insane terminal productivity.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Introduction » Features","id":"1","title":"Features"},"10":{"body":"void-templates by shubham","breadcrumbs":"Quickstart » Install » Void Linux","id":"10","title":"Void Linux"},"100":{"body":"YAML: SwitchModeCustom: string Switch to a custom mode . YAML Example: SwitchModeCustom: my_custom_mode Lua Example: { SwitchModeCustom = \"my_custom_mode\" }","breadcrumbs":"Configuration » Message » { SwitchModeCustom = \"string\" }","id":"100","title":"{ SwitchModeCustom = \"string\" }"},"101":{"body":"YAML: PopMode Pop the last mode from the history and switch to it.","breadcrumbs":"Configuration » Message » \"PopMode\"","id":"101","title":"\"PopMode\""},"102":{"body":"YAML: SwitchLayout: string Switch layout . NOTE: To be specific about which layout to switch to, use SwitchLayoutBuiltin or SwitchLayoutCustom instead. YAML Example: SwitchLayout: default Lua Example: { SwitchLayout = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayout = \"string\" }","id":"102","title":"{ SwitchLayout = \"string\" }"},"103":{"body":"YAML: SwitchLayoutBuiltin: string Switch to a builtin layout . YAML Example: SwitchLayoutBuiltin: default Lua Example: { SwitchLayoutBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutBuiltin = \"string\" }","id":"103","title":"{ SwitchLayoutBuiltin = \"string\" }"},"104":{"body":"YAML: SwitchLayoutCustom: string Switch to a custom layout . YAML Example: SwitchLayoutCustom: my_custom_layout Lua Example: { SwitchLayoutCustom = \"my_custom_layout\" }","breadcrumbs":"Configuration » Message » { SwitchLayoutCustom = \"string\" }","id":"104","title":"{ SwitchLayoutCustom = \"string\" }"},"105":{"body":"YAML: Call: string Call a shell command with the given arguments. Note that the arguments will be shell-escaped. So to read the variables, the -c option of the shell can be used. You may need to pass ExplorePwd depening on the expectation. YAML Example: Call: { command: bash, args: [\"-c\", \"read -p test\"] } Lua Example: { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } }","breadcrumbs":"Configuration » Message » { Call = \"string\" }","id":"105","title":"{ Call = \"string\" }"},"106":{"body":"YAML: CallSilently: string Like Call but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallSilently: { command: tput, args: [\"bell\"] } Lua Example: { CallSilently = { command = \"tput\", args = { \"bell\" } } }","breadcrumbs":"Configuration » Message » { CallSilently = \"string\" }","id":"106","title":"{ CallSilently = \"string\" }"},"107":{"body":"YAML: CallLua: string Call a Lua function. A CallLuaArg object will be passed to the function as argument. The function can optionally return a list of messages for xplr to handle after the executing the function. YAML Example: CallLua: custom.some_custom_funtion Lua Example: { CallLua = \"custom.some_custom_funtion\" }","breadcrumbs":"Configuration » Message » { CallLua = \"string\" }","id":"107","title":"{ CallLua = \"string\" }"},"108":{"body":"YAML: CallLuaSilently: string Like CallLua but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: CallLuaSilently: custom.some_custom_function Lua Example: { CallLuaSilently = \"custom.some_custom_function\" }","breadcrumbs":"Configuration » Message » { CallLuaSilently = \"string\" }","id":"108","title":"{ CallLuaSilently = \"string\" }"},"109":{"body":"YAML: BashExec: string An alias to Call: {command: bash, args: [\"-c\", \"{string}\"], silent: false} where {string} is the given value. YAML Example: BashExec: \"read -p test\" Lua Example: { BashExec = \"read -p test\" }","breadcrumbs":"Configuration » Message » { BashExec = \"string\" }","id":"109","title":"{ BashExec = \"string\" }"},"11":{"body":"Nixpkgs nix-env -f https://github.com/NixOS/nixpkgs/tarball/master -iA xplr","breadcrumbs":"Quickstart » Install » Nix(OS)","id":"11","title":"Nix(OS)"},"110":{"body":"YAML: BashExecSilently(String) Like BashExec but without the flicker. The stdin, stdout stderr will be piped to null. So it's non-interactive. YAML Example: BashExecSilently: \"tput bell\" Lua Example: { BashExecSilently = \"tput bell\" }","breadcrumbs":"Configuration » Message » { BashExecSilently = \"string\" }","id":"110","title":"{ BashExecSilently = \"string\" }"},"111":{"body":"YAML: Select Select the focused node.","breadcrumbs":"Configuration » Message » \"Select\"","id":"111","title":"\"Select\""},"112":{"body":"YAML: SelectAll Select all the visible nodes.","breadcrumbs":"Configuration » Message » \"SelectAll\"","id":"112","title":"\"SelectAll\""},"113":{"body":"YAML: SelectPath: string Select the given path. YAML Example: SelectPath: /path/to/file Lua Example: { SelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { SelectPath = \"string\" }","id":"113","title":"{ SelectPath = \"string\" }"},"114":{"body":"YAML: UnSelect Unselect the focused node.","breadcrumbs":"Configuration » Message » \"UnSelect\"","id":"114","title":"\"UnSelect\""},"115":{"body":"YAML: UnSelectAll Unselect all the visible nodes.","breadcrumbs":"Configuration » Message » \"UnSelectAll\"","id":"115","title":"\"UnSelectAll\""},"116":{"body":"YAML: UnSelectPath: string UnSelect the given path. YAML Example: UnSelectPath: /path/to/file Lua Example: { UnSelectPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { UnSelectPath = \"string)\" }","id":"116","title":"{ UnSelectPath = \"string)\" }"},"117":{"body":"YAML: ToggleSelection Toggle selection on the focused node.","breadcrumbs":"Configuration » Message » \"ToggleSelection\"","id":"117","title":"\"ToggleSelection\""},"118":{"body":"YAML: ToggleSelectAll Toggle between select all and unselect all.","breadcrumbs":"Configuration » Message » \"ToggleSelectAll\"","id":"118","title":"\"ToggleSelectAll\""},"119":{"body":"YAML: ToggleSelectionByPath: string Toggle selection by file path. YAML Example: ToggleSelectionByPath: /path/to/file Lua Example: { ToggleSelectionByPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { ToggleSelectionByPath = \"string\" }","id":"119","title":"{ ToggleSelectionByPath = \"string\" }"},"12":{"body":"MacPorts sudo port selfupdate\nsudo port install xplr Homebrew Stable branch: brew install xplr HEAD branch: brew install --head xplr","breadcrumbs":"Quickstart » Install » macOS","id":"12","title":"macOS"},"120":{"body":"YAML: ClearSelection Clear the selection.","breadcrumbs":"Configuration » Message » \"ClearSelection\"","id":"120","title":"\"ClearSelection\""},"121":{"body":"YAML: AddNodeFilter: { filter = Filter, input = string } Add a filter to exclude nodes while exploring directories. YAML Example: AddNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { AddNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { AddNodeFilter = { filter = Filter , input = \"string\" }","id":"121","title":"{ AddNodeFilter = { filter = Filter , input = \"string\" }"},"122":{"body":"YAML: RemoveNodeFilter: { filter = Filter, input = string Remove an existing filter . YAML Example: RemoveNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { RemoveNodeFilter: { filter: \"RelativePathDoesStartWith\", input: \"foo\" } }","breadcrumbs":"Configuration » Message » { RemoveNodeFilter = { filter = Filter , input = \"string\" }","id":"122","title":"{ RemoveNodeFilter = { filter = Filter , input = \"string\" }"},"123":{"body":"YAML: ToggleNodeFilter: { filter = Filter, input = string } Remove a filter if it exists, else, add a it. YAML Example: ToggleNodeFilter: { filter: RelativePathDoesStartWith, input: foo } Lua Example: { ToggleNodeFilter = { filter = \"RelativePathDoesStartWith\", input = \"foo\" } }","breadcrumbs":"Configuration » Message » { ToggleNodeFilter = { filter = Filter , input = \"string\" }","id":"123","title":"{ ToggleNodeFilter = { filter = Filter , input = \"string\" }"},"124":{"body":"YAML: AddNodeFilterFromInput: Filter Add a node filter reading the input from the buffer. YAML Example: AddNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { AddNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { AddNodeFilterFromInput = Filter }","id":"124","title":"{ AddNodeFilterFromInput = Filter }"},"125":{"body":"YAML: RemoveNodeFilterFromInput: Filter Remove a node filter reading the input from the buffer. YAML Example: RemoveNodeFilterFromInput: RelativePathDoesStartWith Lua Example: { RemoveNodeFilterFromInput = \"RelativePathDoesStartWith\" }","breadcrumbs":"Configuration » Message » { RemoveNodeFilterFromInput = Filter }","id":"125","title":"{ RemoveNodeFilterFromInput = Filter }"},"126":{"body":"YAML: RemoveLastNodeFilter Remove the last node filter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeFilter\"","id":"126","title":"\"RemoveLastNodeFilter\""},"127":{"body":"YAML: ResetNodeFilters Reset the node filters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeFilters\"","id":"127","title":"\"ResetNodeFilters\""},"128":{"body":"YAML: ClearNodeFilters Clear all the node filters .","breadcrumbs":"Configuration » Message » \"ClearNodeFilters\"","id":"128","title":"\"ClearNodeFilters\""},"129":{"body":"YAML: AddNodeSorter: { sorter: Sorter, reverse = bool } Add a sorter to sort nodes while exploring directories. YAML Example: AddNodeSorter: { sorter: ByRelativePath, reverse: false } YAML Example: { AddNodeSorter = { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { AddNodeSorter = { sorter = Sorter , reverse = bool } }","id":"129","title":"{ AddNodeSorter = { sorter = Sorter , reverse = bool } }"},"13":{"body":"ports pkg install xplr Or cd /usr/ports/misc/xplr\nmake install clean","breadcrumbs":"Quickstart » Install » FreeBSD","id":"13","title":"FreeBSD"},"130":{"body":"YAML: RemoveNodeSorter: Sorter Remove an existing sorter . YAML Example: RemoveNodeSorter: ByRelativePath Lua Example: { RemoveNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { RemoveNodeSorter = Sorter }","id":"130","title":"{ RemoveNodeSorter = Sorter }"},"131":{"body":"YAML: ReverseNodeSorter: Sorter Reverse a node sorter . YAML Example: ReverseNodeSorter: ByRelativePath Lua Example: { ReverseNodeSorter = \"ByRelativePath\" }","breadcrumbs":"Configuration » Message » { ReverseNodeSorter = Sorter }","id":"131","title":"{ ReverseNodeSorter = Sorter }"},"132":{"body":"YAML: ToggleNodeSorter: { sorter: Sorter, reverse = bool } Remove a sorter if it exists, else, add a it. YAML Example: ToggleSorterSorter: {sorter: ByRelativePath, reverse: false } Lua Example: { ToggleSorterSorter: { sorter = \"ByRelativePath\", reverse = false } }","breadcrumbs":"Configuration » Message » { ToggleNodeSorter = { sorter = Sorter , reverse = bool } }","id":"132","title":"{ ToggleNodeSorter = { sorter = Sorter , reverse = bool } }"},"133":{"body":"YAML: ReverseNodeSorters Reverse the node sorters .","breadcrumbs":"Configuration » Message » \"ReverseNodeSorters\"","id":"133","title":"\"ReverseNodeSorters\""},"134":{"body":"YAML: RemoveLastNodeSorter Remove the last node sorter .","breadcrumbs":"Configuration » Message » \"RemoveLastNodeSorter\"","id":"134","title":"\"RemoveLastNodeSorter\""},"135":{"body":"YAML: ResetNodeSorters Reset the node sorters back to the default configuration.","breadcrumbs":"Configuration » Message » \"ResetNodeSorters\"","id":"135","title":"\"ResetNodeSorters\""},"136":{"body":"YAML: ClearNodeSorters Clear all the node sorters .","breadcrumbs":"Configuration » Message » \"ClearNodeSorters\"","id":"136","title":"\"ClearNodeSorters\""},"137":{"body":"YAML: EnableMouse Enable mouse","breadcrumbs":"Configuration » Message » \"EnableMouse\"","id":"137","title":"\"EnableMouse\""},"138":{"body":"YAML: DisableMouse Disable mouse","breadcrumbs":"Configuration » Message » \"DisableMouse\"","id":"138","title":"\"DisableMouse\""},"139":{"body":"YAML: ToggleMouse Toggle mouse","breadcrumbs":"Configuration » Message » \"ToggleMouse\"","id":"139","title":"\"ToggleMouse\""},"14":{"body":"pkgsrc pkgin install xplr Or cd /usr/pkgsrc/sysutils/xplr\nmake install","breadcrumbs":"Quickstart » Install » NetBSD","id":"14","title":"NetBSD"},"140":{"body":"YAML: StartFifo: string Start piping the focused path to the given fifo path YAML Example: StartFifo: /tmp/xplr.fifo Lua Example: { StartFifo = \"/tmp/xplr.fifo }","breadcrumbs":"Configuration » Message » { StartFifo = \"string\" }","id":"140","title":"{ StartFifo = \"string\" }"},"141":{"body":"YAML: StopFifo Close the active fifo and stop piping.","breadcrumbs":"Configuration » Message » \"StopFifo\"","id":"141","title":"\"StopFifo\""},"142":{"body":"YAML: ToggleFifo: string Toggle betwen {Start|Stop}Fifo YAML Example: ToggleFifo: /path/to/fifo Lua Example: { ToggleFifo = \"/path/to/fifo\" }","breadcrumbs":"Configuration » Message » { ToggleFifo = \"string\" }","id":"142","title":"{ ToggleFifo = \"string\" }"},"143":{"body":"YAML: LogInfo: string Log information message. YAML Example: LogInfo: launching satellite Lua Example: { LogInfo = \"launching satellite\" }","breadcrumbs":"Configuration » Message » { LogInfo = \"string\" }","id":"143","title":"{ LogInfo = \"string\" }"},"144":{"body":"YAML: LogSuccess: string Log a success message. YAML Example: LogSuccess: satellite reached destination. Lua Example: { LogSuccess = \"satellite reached destination\" }.","breadcrumbs":"Configuration » Message » { LogSuccess = \"String\" }","id":"144","title":"{ LogSuccess = \"String\" }"},"145":{"body":"YAML: LogWarning: string Log an warning message. YAML Example: LogWarning: satellite is heating Lua Example: { LogWarning = \"satellite is heating\" }","breadcrumbs":"Configuration » Message » { LogWarning = \"string\" }","id":"145","title":"{ LogWarning = \"string\" }"},"146":{"body":"YAML: LogError: string Log an error message. YAML Example: LogError: satellite crashed Lua Example: { LogError = \"satellite crashed\" }","breadcrumbs":"Configuration » Message » { LogError = \"string\" }","id":"146","title":"{ LogError = \"string\" }"},"147":{"body":"YAML: Quit Quit with returncode zero (success).","breadcrumbs":"Configuration » Message » \"Quit\"","id":"147","title":"\"Quit\""},"148":{"body":"YAML: PrintPwdAndQuit Print $PWD and quit.","breadcrumbs":"Configuration » Message » \"PrintPwdAndQuit\"","id":"148","title":"\"PrintPwdAndQuit\""},"149":{"body":"YAML: PrintFocusPathAndQuit Print the path under focus and quit. It can be empty string if there's nothing to focus.","breadcrumbs":"Configuration » Message » \"PrintFocusPathAndQuit\"","id":"149","title":"\"PrintFocusPathAndQuit\""},"15":{"body":"One can directly download the standalone binary from the releases . Currently, the following options are available for direct download: Linux macOS Command-line instructions: platform=\"linux\" # or \"macos\" # Download\nwget https://github.com/sayanarijit/xplr/releases/latest/download/xplr-$platform.tar.gz # Extract\ntar xzvf xplr-$platform.tar.gz # Place in $PATH\nsudo mv xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Direct Download","id":"15","title":"Direct Download"},"150":{"body":"YAML: PrintSelectionAndQuit Print the selected paths and quit. It can be empty is no path is selected.","breadcrumbs":"Configuration » Message » \"PrintSelectionAndQuit\"","id":"150","title":"\"PrintSelectionAndQuit\""},"151":{"body":"YAML: PrintResultAndQuit Print the selected paths if it's not empty, else, print the focused node's path.","breadcrumbs":"Configuration » Message » \"PrintResultAndQuit\"","id":"151","title":"\"PrintResultAndQuit\""},"152":{"body":"YAML: PrintAppStateAndQuit Print the state of application in YAML format. Helpful for debugging or generating the default configuration file.","breadcrumbs":"Configuration » Message » \"PrintAppStateAndQuit\"","id":"152","title":"\"PrintAppStateAndQuit\""},"153":{"body":"YAML: Debug: string Write the application state to a file, without quitting. Also helpful for debugging. YAML Example: Debug: /path/to/file Lua Example: { Debug = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { Debug = \"string\" }","id":"153","title":"{ Debug = \"string\" }"},"154":{"body":"YAML: Terminate Terminate the application with a non-zero return code.","breadcrumbs":"Configuration » Message » \"Terminate\"","id":"154","title":"\"Terminate\""},"155":{"body":"xplr allows users to define lua functions using the xplr.fn.custom Lua API. These functions can be called using messages like CallLua, CallLuaSilently. When called the function receives a special argument that contains some useful information. The function can optionally return a list of messages which will be handled by xplr.","breadcrumbs":"Configuration » Message » Lua Function Calls","id":"155","title":"Lua Function Calls"},"156":{"body":"This is a special argument passed to the lua functions when called using the CallLua, CallLuaSilently messages. It contains the following information: version config pwd focused_node directory_buffer selection mode layout input_buffer pid session_path explorer_config history last_modes","breadcrumbs":"Configuration » Message » CallLua Argument","id":"156","title":"CallLua Argument"},"157":{"body":"Type: string xplr version. Can be used to test compatibility.","breadcrumbs":"Configuration » Message » version","id":"157","title":"version"},"158":{"body":"Type: Config","breadcrumbs":"Configuration » Message » config","id":"158","title":"config"},"159":{"body":"Type: string The present working directory/","breadcrumbs":"Configuration » Message » pwd","id":"159","title":"pwd"},"16":{"body":"Prerequisites: Rust toolchain , gcc make Command-line instructions: cargo install --force xplr","breadcrumbs":"Quickstart » Install » From crates.io","id":"16","title":"From crates.io"},"160":{"body":"Type: nullable Node The node under focus.","breadcrumbs":"Configuration » Message » focused_node","id":"160","title":"focused_node"},"161":{"body":"TODO","breadcrumbs":"Configuration » Message » directory_buffer","id":"161","title":"directory_buffer"},"162":{"body":"Type: list of selected Node s The selected nodes.","breadcrumbs":"Configuration » Message » selection","id":"162","title":"selection"},"163":{"body":"Type: Mode Current mode.","breadcrumbs":"Configuration » Message » mode","id":"163","title":"mode"},"164":{"body":"Type: Layout Current layout.","breadcrumbs":"Configuration » Message » layout","id":"164","title":"layout"},"165":{"body":"Type: nullable string The input buffer.","breadcrumbs":"Configuration » Message » input_buffer","id":"165","title":"input_buffer"},"166":{"body":"Type: integer The xplr session PID.","breadcrumbs":"Configuration » Message » pid","id":"166","title":"pid"},"167":{"body":"Type: string The session path.","breadcrumbs":"Configuration » Message » session_path","id":"167","title":"session_path"},"168":{"body":"TODO","breadcrumbs":"Configuration » Message » explorer_config","id":"168","title":"explorer_config"},"169":{"body":"TODO","breadcrumbs":"Configuration » Message » history","id":"169","title":"history"},"17":{"body":"Prerequisites: git Rust toolchain gcc make Command-line instructions: # Clone the repository\ngit clone https://github.com/sayanarijit/xplr.git\ncd xplr # Build\ncargo build --release --bin xplr # Place in $PATH\nsudo cp target/release/xplr /usr/local/bin/","breadcrumbs":"Quickstart » Install » Build From Source","id":"17","title":"Build From Source"},"170":{"body":"Type: list of Mode Last modes, not popped yet.","breadcrumbs":"Configuration » Message » last_modes","id":"170","title":"last_modes"},"171":{"body":"A node contains the following fields: parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink","breadcrumbs":"Configuration » Message » Node","id":"171","title":"Node"},"172":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Message » parent","id":"172","title":"parent"},"173":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Message » relative_path","id":"173","title":"relative_path"},"174":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Message » absolute_path","id":"174","title":"absolute_path"},"175":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Message » extension","id":"175","title":"extension"},"176":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Message » is_symlink","id":"176","title":"is_symlink"},"177":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Message » is_broken","id":"177","title":"is_broken"},"178":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Message » is_dir","id":"178","title":"is_dir"},"179":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Message » is_file","id":"179","title":"is_file"},"18":{"body":"","breadcrumbs":"Quickstart » Install » Android","id":"18","title":"Android"},"180":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Message » is_readonly","id":"180","title":"is_readonly"},"181":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Message » mime_essence","id":"181","title":"mime_essence"},"182":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Message » size","id":"182","title":"size"},"183":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Message » human_size","id":"183","title":"human_size"},"184":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Message » permissions","id":"184","title":"permissions"},"185":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Message » canonical","id":"185","title":"canonical"},"186":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Message » symlink","id":"186","title":"symlink"},"187":{"body":"-- Define the function\nxplr.fn.custom.ask_name_and_greet = function(app) print(\"What's your name?\") local name = io.read() local greeting = \"Hello \" .. name .. \"!\" local message = greeting .. \" You are inside \" .. app.pwd return { { LogSuccess = message }, }\nend -- Map the function to a key (space)\nxplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { CallLua = \"custom.ask_name_and_greet\" } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example: Using Lua Function Calls","id":"187","title":"Example: Using Lua Function Calls"},"188":{"body":"Alternative to CallLua, CallLuaSilently messages that call Lua functions, there are Call, CallSilently, BashExec, BashExecSilently messages that call shell commands. However, unlike the Lua functions, these shell commands have to read the useful information and send messages via environment variables and temporary files called \"pipe\"s. These environment variables and files are only available when a command is being executed. Visit the fzf integration tutorial for example.","breadcrumbs":"Configuration » Message » Environment Variables and Pipes","id":"188","title":"Environment Variables and Pipes"},"189":{"body":"To see the environment variables, invoke the shell by typing :! in default mode and run the following command: env | grep ^XPLR_ You will see something like: XPLR_FOCUS_INDEX=0\nXPLR_MODE=action to\nXPLR_PIPE_SELECTION_OUT=/run/user/1000/xplr/session/122278/pipe/selection_out\nXPLR_INPUT_BUFFER=\nXPLR_PIPE_GLOBAL_HELP_MENU_OUT=/run/user/1000/xplr/session/122278/pipe/global_help_menu_out\nXPLR_PID=122278\nXPLR_PIPE_MSG_IN=/run/user/1000/xplr/session/122278/pipe/msg_in\nXPLR_PIPE_LOGS_OUT=/run/user/1000/xplr/session/122278/pipe/logs_out\nXPLR_PIPE_RESULT_OUT=/run/user/1000/xplr/session/122278/pipe/result_out\nXPLR_PIPE_HISTORY_OUT=/run/user/1000/xplr/session/122278/pipe/history_out\nXPLR_FOCUS_PATH=/home/sayanarijit/Documents/GitHub/xplr/docs/en/book\nXPLR_SESSION_PATH=/run/user/1000/xplr/session/122278\nXPLR_APP_VERSION=0.14.3\nXPLR_PIPE_DIRECTORY_NODES_OUT=/run/user/1000/xplr/session/122278/pipe/directory_nodes_out The environment variables starting with XPLR_PIPE_ are the temporary files called \"pipe\"s. Input pipe Current there is only one input pipe. XPLR_PIPE_MSG_IN Output pipes XPLR_PIPE_*_OUT are the output pipes that contain data which cannot be exposed directly via environment variables, like multi-line string. XPLR_PIPE_SELECTION_OUT XPLR_PIPE_GLOBAL_HELP_MENU_OUT XPLR_PIPE_LOGS_OUT XPLR_PIPE_RESULT_OUT XPLR_PIPE_HISTORY_OUT XPLR_PIPE_DIRECTORY_NODES_OUT XPLR_PIPE_MSG_IN Append new-line delimited messages to this pipe in YAML (or JSON ) syntax. These messages will be read and handled by xplr after the command execution. XPLR_PIPE_SELECTION_OUT New-line delimited list of selected paths. XPLR_PIPE_GLOBAL_HELP_MENU_OUT The full help menu. XPLR_PIPE_LOGS_OUT New-line delimited list of logs. XPLR_PIPE_RESULT_OUT New-line delimited result (selected paths if any, else the focused path) XPLR_PIPE_HISTORY_OUT New-line delimited list of last visited paths (similar to jump list in vim). XPLR_PIPE_DIRECTORY_NODES_OUT New-line delimited list of paths, filtered and sorted as displayed in the files table .","breadcrumbs":"Configuration » Message » Environment variables","id":"189","title":"Environment variables"},"19":{"body":"xplr-termuxfd3c398d3cf4bcbc.md.jpg Please note that xplr isn't heavily tested on Termux, hence things might need a little tweaking and fixing for a smooth usage experience. Install build dependencies pkg install rustc cargo make Install xplr cargo install --force xplr Setup storage termux-setup-storage Setup config and runtime dir export XDG_CONFIG_HOME=\"$PWD/storage/.config\"\nexport XDG_RUNTIME_DIR=\"$PWD/storage/run\" mkdir -p \"$XDG_CONFIG_HOME\" \"$XDG_RUNTIME_DIR\" Run ~/.cargo/bin/xplr","breadcrumbs":"Quickstart » Install » Termux","id":"19","title":"Termux"},"190":{"body":"xplr.config.modes.builtin.default.key_bindings.on_key.space = { help = \"ask name and greet\", messages = { { BashExec = [===[ echo \"What's your name?\" read name greeting=\"Hello $name!\" message=\"$greeting You are inside $PWD\" echo LogSuccess: '\"'$message'\"' >> \"${XPLR_PIPE_MSG_IN:?}\" ]===] } }\n} -- Now, when you press \"space\" in default mode, you will be prompted for your\n-- name. Enter your name to receive a nice greeting and to know your location.","breadcrumbs":"Configuration » Message » Example: Using Environment Variables and Pipes","id":"190","title":"Example: Using Environment Variables and Pipes"},"191":{"body":"xplr layouts define the structure of the UI, i.e. how many panel we see, placement and size of the panels, how they look etc. This is configuration exposed via the xplr.config.layouts API. It contains the following fields: builtin custom The users can switch between these layouts at run-time.","breadcrumbs":"Configuration » Layouts » Layouts","id":"191","title":"Layouts"},"192":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.builtin API. xplr by default provides the following builtin layouts: default no_help no_selection no_help_no_selection","breadcrumbs":"Configuration » Layouts » builtin","id":"192","title":"builtin"},"193":{"body":"Type: Layout This is the default layout we see when we run xplr.","breadcrumbs":"Configuration » Layouts » default","id":"193","title":"default"},"194":{"body":"Type: Layout This layout hides the help menu.","breadcrumbs":"Configuration » Layouts » no_help","id":"194","title":"no_help"},"195":{"body":"Type: Layout This layout hides the selection panel.","breadcrumbs":"Configuration » Layouts » no_selection","id":"195","title":"no_selection"},"196":{"body":"Type: Layout This layout hides both the help menu and the selection panel.","breadcrumbs":"Configuration » Layouts » no_help_no_selection","id":"196","title":"no_help_no_selection"},"197":{"body":"Type: mapping of string and Layout This is exposed by the xplr.config.layouts.custom API. It allows the users to define any custom layout. Example: xplr.config.layouts.custom.example = \"Nothing\"\nxplr.config.general.initial_layout = \"example\" -- when you load xplr, you should see a blank screen","breadcrumbs":"Configuration » Layouts » custom","id":"197","title":"custom"},"198":{"body":"A layout can be one of the following: \"Nothing\" \"Table\" \"InputAndLogs\" \"Selection\" \"HelpMenu\" \"SortAndFilter\" { Horizontal = { config = Layout Config , splits = { Layout , ... } } { Vertical = { config = Layout Config , splits = { Layout , ... } }","breadcrumbs":"Configuration » Layouts » Layout","id":"198","title":"Layout"},"199":{"body":"This layout contains a blank panel.","breadcrumbs":"Configuration » Layouts » Nothing","id":"199","title":"Nothing"},"2":{"body":"xplr is built with configurability in mind. So it allows you to perform a vast set of operations and make it behave just the way you want. A few things you can do with the xplr configuration Hack the layout Hack the key bindings Extend with plugins","breadcrumbs":"Introduction » Hackable","id":"2","title":"Hackable"},"20":{"body":"Once installed , use the following steps to setup and run xplr.","breadcrumbs":"Quickstart » Post Install » Post Install","id":"20","title":"Post Install"},"200":{"body":"This layout contains the table displaying the files and directories in the current directory.","breadcrumbs":"Configuration » Layouts » Table","id":"200","title":"Table"},"201":{"body":"This layout contains the panel displaying the input prompt and logs.","breadcrumbs":"Configuration » Layouts » InputAndLogs","id":"201","title":"InputAndLogs"},"202":{"body":"This layout contains the panel displaying the selected paths.","breadcrumbs":"Configuration » Layouts » Selection","id":"202","title":"Selection"},"203":{"body":"This layout contains the panel displaying the help menu for the current mode in real-time.","breadcrumbs":"Configuration » Layouts » HelpMenu","id":"203","title":"HelpMenu"},"204":{"body":"This layout contains the panel displaying the pipeline of sorters and filters applied of the list of paths being displayed.","breadcrumbs":"Configuration » Layouts » SortAndFilter","id":"204","title":"SortAndFilter"},"205":{"body":"This is a special layout that splits the panel into two horizontal parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Horizontal","id":"205","title":"Horizontal"},"206":{"body":"This is a special layout that splits the panel into two vertical parts. It contains the following information: config splits","breadcrumbs":"Configuration » Layouts » Vertical","id":"206","title":"Vertical"},"207":{"body":"A layout config contains the following information: margin horizontal_margin vertical_margin constraints","breadcrumbs":"Configuration » Layouts » Layout Config","id":"207","title":"Layout Config"},"208":{"body":"Type: nullable integer The width of the margin in all direction.","breadcrumbs":"Configuration » Layouts » margin","id":"208","title":"margin"},"209":{"body":"Type: nullable integer The width of the horizontal margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » horizontal_Margin","id":"209","title":"horizontal_Margin"},"21":{"body":"mkdir -p ~/.config/xplr version=\"$(xplr | grep ^version: | cut -d' ' -f 2)\" # When the app loads, press `#` echo version = '\"'${version:?}'\"' > ~/.config/xplr/init.lua Then copy from here and remove / comment out what you don't want to customize. Note: You don't generally need to create the config file. You can use the default configuration for basic operations. However, creating the config file is recommended because the project is in its early stage and the defaults might change. Creating the config file will save you from unexpected behavior when you upgrade . Also, the default configuration is meant to be overwritten to suit your workflow.","breadcrumbs":"Quickstart » Post Install » Create the customizable config file","id":"21","title":"Create the customizable config file"},"210":{"body":"Type: nullable integer The width of the vertical margins. Overwrites the margin value.","breadcrumbs":"Configuration » Layouts » vertical_Margin","id":"210","title":"vertical_Margin"},"211":{"body":"Type: nullable list of Constraint The constraints applied on the layout.","breadcrumbs":"Configuration » Layouts » constraints","id":"211","title":"constraints"},"212":{"body":"A constraint can be one of the following: { Percentage = int } { Ratio = { int, int } } { Length = { int } { LengthLessThanScreenHeight = int } { LengthLessThanScreenWidth = int } { LengthLessThanLayoutHeight = int } { LengthLessThanLayoutWidth = int } { Max = int } { MaxLessThanScreenHeight = int } { MaxLessThanScreenWidth = int } { MaxLessThanLayoutHeight = int } { MaxthLessThanLayoutWidth = int } { Min = int } { MinLessThanScreenHeight = int } { MinLessThanScreenWidth = int } { MinLessThanLayoutHeight = int } { MinLessThanLayoutWidth = int } TODO: document each constraint.","breadcrumbs":"Configuration » Layouts » Constraint","id":"212","title":"Constraint"},"213":{"body":"Type: list of Layout The list of child layouts to fit into the parent layout.","breadcrumbs":"Configuration » Layouts » splits","id":"213","title":"splits"},"214":{"body":"layout.png xplr.config.layouts.builtin.default = { Horizontal = { config = { margin = 1, horizontal_margin = 2, vertical_margin = 3, constraints = { { Percentage = 50 }, { Percentage = 50 }, } }, splits = { \"Table\", \"HelpMenu\", } }\n}","breadcrumbs":"Configuration » Layouts » Example","id":"214","title":"Example"},"215":{"body":"This configuration defines how to deal with different kinds of nodes (files, directories, symlinks etc.) in a directory. This can be configured using the xplr.config.node_types Lua API. It contains the following fields: directory file symlink mime_essence extension special One node can fall into multiple categories. For example, a node can have the extension md, and be a file. In that case, the properties from the more specific category i.e. extension will be used. The priority is: special > extension > mime_essence > symlink > file > directory","breadcrumbs":"Configuration » Node Types » Node Types","id":"215","title":"Node Types"},"216":{"body":"Type: NodeType Config Properties related to directories are defined here. Contains the following fields: Example: xplr.config.node_types.directory.meta.icon = \"\"\nxplr.config.node_types.directory.style.add_modifiers = { \"Bold\" }","breadcrumbs":"Configuration » Node Types » directory","id":"216","title":"directory"},"217":{"body":"Type: NodeType Config Properties related to regular files are defined here. Contains the following fields: Example: xplr.config.node_types.file.meta.icon = \"\"\nxplr.config.node_types.file.style.fg = \"White\"","breadcrumbs":"Configuration » Node Types » file","id":"217","title":"file"},"218":{"body":"Type: NodeType Config Properties related to symlink are defined here. Example: xplr.config.node_types.symlink.meta.icon = \"\"\nxplr.config.node_types.symlink.style.add_modifiers = { \"Italic\" }","breadcrumbs":"Configuration » Node Types » symlink","id":"218","title":"symlink"},"219":{"body":"Type: mapping of mime-type and mapping of mime-subtype and NodeType Config Properties related to files with specific mime types are defined here. It is possible to use the wildcard * to match all mime subtypes. It will be overwritten by the more specific sub types that are defined. Example: xplr.config.node_types.mime_essence = { application = { -- application/* [\"*\"] = { meta = { icon = \"a\" } } -- application/pdf pdf = { meta = { icon = \"\" } }, -- application/zip zip = { meta = { icon = \"\"} }, },\n}","breadcrumbs":"Configuration » Node Types » mime_essence","id":"219","title":"mime_essence"},"22":{"body":"xplr","breadcrumbs":"Quickstart » Post Install » Run","id":"22","title":"Run"},"220":{"body":"Type: mapping of extension and NodeType Config Properties related to files with specific extension are defined here. Example: xplr.config.node_types.extension.md = { meta = { icon = \"\" } }\nxplr.config.node_types.extension.rs = { meta = { icon = \"🦀\" } }","breadcrumbs":"Configuration » Node Types » extension","id":"220","title":"extension"},"221":{"body":"Type: mapping of name and NodeType Config Properties related to files and directories with special names are defined here. Example: xplr.config.node_types.special[\"Cargo.toml\"] = { meta = { icon = \"\" } }\nxplr.config.node_types.special[\"Downloads\"] = { meta = { icon = \"\" } }","breadcrumbs":"Configuration » Node Types » special","id":"221","title":"special"},"222":{"body":"A node-type config contains the following fields: meta style","breadcrumbs":"Configuration » Node Types » NodeType Config","id":"222","title":"NodeType Config"},"223":{"body":"Type: mapping of string and string A meta field can contain custom metadata about a node. By default, the \"icon\" metadata is set for the directory , file , and symlink nodes. Example: xplr.config.node_types.file = { meta = { icon = \"f\", foo = \"bar\", }\n}","breadcrumbs":"Configuration » Node Types » meta","id":"223","title":"meta"},"224":{"body":"A style object contains the following information: fg bg add_modifiers sub_modifiers","breadcrumbs":"Configuration » Style » Style","id":"224","title":"Style"},"225":{"body":"Type: nullable Color The foreground color.","breadcrumbs":"Configuration » Style » fg","id":"225","title":"fg"},"226":{"body":"Type: nullable Color The background color.","breadcrumbs":"Configuration » Style » bg","id":"226","title":"bg"},"227":{"body":"Type: nullable list of Modifier Modifiers to add.","breadcrumbs":"Configuration » Style » add_modifiers","id":"227","title":"add_modifiers"},"228":{"body":"Type: nullable list of Modifier Modifiers to remove.","breadcrumbs":"Configuration » Style » sub_modifiers","id":"228","title":"sub_modifiers"},"229":{"body":"Color can be one of the following: \"Reset\" \"Black\" \"Red\" \"Green\" \"Yellow\" \"Blue\" \"Magenta\" \"Cyan\" \"Gray\" \"DarkGray\" \"LightRed\" \"LightGreen\" \"LightYellow\" \"LightBlue\" \"LightMagenta\" \"LightCyan\" \"White\" { Rgb = { int, int, int } } { Indexed = int }","breadcrumbs":"Configuration » Style » Color","id":"229","title":"Color"},"23":{"body":"xplr can be configured using Lua via a special file named init.lua ( example ), which can be placed in ~/.config/xplr/ (user specific) or /etc/xplr/ (global) depending on the use case. When a user specific configuration is available, the global configuration file will be ignored. However, it's also possible to place the file anywhere, with any name and use the command-line argument -c / --config to specify its path explicitely. In that case, both ~/.config/xplr/init.lua and /etc/xplr/init.lua will be ignored.","breadcrumbs":"Configuration » Configuration","id":"23","title":"Configuration"},"230":{"body":"Modifier can be one of the following: \"Bold\" \"Dim\" \"Italic\" \"Underlined\" \"SlowBlink\" \"RapidBlink\" \"Reversed\" \"Hidden\" \"CrossedOut\"","breadcrumbs":"Configuration » Style » Modifier","id":"230","title":"Modifier"},"231":{"body":"xplr.config.general.cursor.style.fg = \"Red\"\nxplr.config.general.cursor.style.bg = { Rgb = { 100, 150, 200 } }\nxplr.config.general.cursor.style.add_modifiers = { \"Bold\", \"Italic\" }\nxplr.config.general.cursor.style.sub_modifiers = { \"Hidden\" }","breadcrumbs":"Configuration » Style » Example","id":"231","title":"Example"},"232":{"body":"xplr supports sorting paths by different properties. The sorting mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: size↑ › [i]rel↓ › [c]dir↑ › [c]file↑ › sym↑ This line means that the nodes visible in the table will be first sorted by it's size, then by case insensitive relative path, then by the canonical (symlink resolved) type of the node, and finally by whether or not the node is a symlink. The arrows denote the order. Each part of this pipeline is called Node Sorter Applicable .","breadcrumbs":"Configuration » Sorting » Sorting","id":"232","title":"Sorting"},"233":{"body":"It contains the following information: sorter reverse","breadcrumbs":"Configuration » Sorting » Node Sorter Applicable","id":"233","title":"Node Sorter Applicable"},"234":{"body":"A sorter can be one of the following: \"ByRelativePath\" \"ByIRelativePath\" \"ByExtension\" \"ByIsDir\" \"ByIsFile\" \"ByIsSymlink\" \"ByIsBroken\" \"ByIsReadonly\" \"ByMimeEssence\" \"BySize\" \"ByCanonicalAbsolutePath\" \"ByICanonicalAbsolutePath\" \"ByCanonicalExtension\" \"ByCanonicalIsDir\" \"ByCanonicalIsFile\" \"ByCanonicalIsReadonly\" \"ByCanonicalMimeEssence\" \"ByCanonicalSize\" \"BySymlinkAbsolutePath\" \"ByISymlinkAbsolutePath\" \"BySymlinkExtension\" \"BySymlinkIsDir\" \"BySymlinkIsFile\" \"BySymlinkIsReadonly\" \"BySymlinkMimeEssence\" \"BySymlinkSize\" TODO: document each","breadcrumbs":"Configuration » Sorting » sorter","id":"234","title":"sorter"},"235":{"body":"Type: boolean It defined the direction of the order.","breadcrumbs":"Configuration » Sorting » reverse","id":"235","title":"reverse"},"236":{"body":"xplr.config.general.initial_sorting = { { sorter = \"ByCanonicalIsDir\", reverse = true }, { sorter = \"ByIRelativePath\", reverse = false },\n} This snippet defines the initial sorting logic to be applied when xplr loads.","breadcrumbs":"Configuration » Sorting » Example","id":"236","title":"Example"},"237":{"body":"xplr supports filtering paths by different properties. The filtering mechanism works like a pipeline, which in visible in the Sort & filter panel. Example: rel!^. › [i]abs=~abc › [i]rel!~xyz This line means that the nodes visible on the table will first be filtered by the condition: relative path does not start with . , then by the condition: absolute path contains abc (case insensitive) , and finally by the condition: relative path does not contain xyz (case insensitive). Each part of this pipeline is called Node Filter Applicable .","breadcrumbs":"Configuration » Filtering » Filtering","id":"237","title":"Filtering"},"238":{"body":"It contains the following information: filter input","breadcrumbs":"Configuration » Filtering » Node Filter Applicable","id":"238","title":"Node Filter Applicable"},"239":{"body":"A filter can be one of the following: \"RelativePathIs\" \"RelativePathIsNot\" \"IRelativePathIs\" \"IRelativePathIsNot\" \"RelativePathDoesStartWith\" \"RelativePathDoesNotStartWith\" \"IRelativePathDoesStartWith\" \"IRelativePathDoesNotStartWith\" \"RelativePathDoesContain\" \"RelativePathDoesNotContain\" \"IRelativePathDoesContain\" \"IRelativePathDoesNotContain\" \"RelativePathDoesEndWith\" \"RelativePathDoesNotEndWith\" \"IRelativePathDoesEndWith\" \"IRelativePathDoesNotEndWith\" \"AbsolutePathIs\" \"AbsolutePathIsNot\" \"IAbsolutePathIs\" \"IAbsolutePathIsNot\" \"AbsolutePathDoesStartWith\" \"AbsolutePathDoesNotStartWith\" \"IAbsolutePathDoesStartWith\" \"IAbsolutePathDoesNotStartWith\" \"AbsolutePathDoesContain\" \"AbsolutePathDoesNotContain\" \"IAbsolutePathDoesContain\" \"IAbsolutePathDoesNotContain\" \"AbsolutePathDoesEndWith\" \"AbsolutePathDoesNotEndWith\" \"IAbsolutePathDoesEndWith\" \"IAbsolutePathDoesNotEndWith\" TODO: document each","breadcrumbs":"Configuration » Filtering » filter","id":"239","title":"filter"},"24":{"body":"When xplr loads, it first executes the built-in init.lua to set the default values, which is then overwritten by another config file, if found using the following lookup order: --config /path/to/init.lua > ~/.config/xplr/init.lua > /etc/xplr/init.lua","breadcrumbs":"Configuration » How Config Is Loaded","id":"24","title":"How Config Is Loaded"},"240":{"body":"Type: string The input for the condition.","breadcrumbs":"Configuration » Filtering » input","id":"240","title":"input"},"241":{"body":"ToggleNodeFilter = { filter = \"RelativePathDoesNotStartWith\", input = \".\"\n} Here, ToggleNodeFilter is a message that adds or removes (toggles) the filter applied.","breadcrumbs":"Configuration » Filtering » Example:","id":"241","title":"Example:"},"242":{"body":"A column renderer is a Lua function that receives a special argument and returns a string that will be displayed in each specific field of the files table . xplr by default provides the following column renderers: xplr.fn.builtin.fmt_general_table_row_cols_0 xplr.fn.builtin.fmt_general_table_row_cols_1 xplr.fn.builtin.fmt_general_table_row_cols_2 xplr.fn.builtin.fmt_general_table_row_cols_3 xplr.fn.builtin.fmt_general_table_row_cols_4 You can either overwrite these functions, or create new functions in xplr.fn.custom and point to them. Terminal colors are supported.","breadcrumbs":"Configuration » Column Renderer » Column Renderer","id":"242","title":"Column Renderer"},"243":{"body":"The special argument contains the following fields parent relative_path absolute_path extension is_symlink is_broken is_dir is_file is_readonly mime_essence size human_size permissions canonical symlink index relative_index is_before_focus is_after_focus tree prefix suffix is_selected is_focused total meta","breadcrumbs":"Configuration » Column Renderer » Table Renderer Argument","id":"243","title":"Table Renderer Argument"},"244":{"body":"Type: string The parent path of the node.","breadcrumbs":"Configuration » Column Renderer » parent","id":"244","title":"parent"},"245":{"body":"Type: string The path relative to the parent, i.e. the file/directory name with extension.","breadcrumbs":"Configuration » Column Renderer » relative_path","id":"245","title":"relative_path"},"246":{"body":"Type: string The absolute path (without resolving symlinks) of the node.","breadcrumbs":"Configuration » Column Renderer » absolute_path","id":"246","title":"absolute_path"},"247":{"body":"Type: string The extension of the node.","breadcrumbs":"Configuration » Column Renderer » extension","id":"247","title":"extension"},"248":{"body":"Type: boolean true if the node is a symlink.","breadcrumbs":"Configuration » Column Renderer » is_symlink","id":"248","title":"is_symlink"},"249":{"body":"Type: boolean true if the node is a broken symlink.","breadcrumbs":"Configuration » Column Renderer » is_broken","id":"249","title":"is_broken"},"25":{"body":"The xplr configuration, exposed as xplr.config Lua API contains the following fields: general modes layouts node_types","breadcrumbs":"Configuration » config","id":"25","title":"config"},"250":{"body":"Type: boolean true if the node is a directory.","breadcrumbs":"Configuration » Column Renderer » is_dir","id":"250","title":"is_dir"},"251":{"body":"Type: boolean true if the node is a file.","breadcrumbs":"Configuration » Column Renderer » is_file","id":"251","title":"is_file"},"252":{"body":"Type: boolean true if the node is real-only.","breadcrumbs":"Configuration » Column Renderer » is_readonly","id":"252","title":"is_readonly"},"253":{"body":"Type: string The mime type of the node. For e.g. text/csv, image/jpeg etc.","breadcrumbs":"Configuration » Column Renderer » mime_essence","id":"253","title":"mime_essence"},"254":{"body":"Type: integer The size of the exact node. The size of a directory won't be calculated recursively.","breadcrumbs":"Configuration » Column Renderer » size","id":"254","title":"size"},"255":{"body":"Type: string Like size but in human readable format.","breadcrumbs":"Configuration » Column Renderer » human_size","id":"255","title":"human_size"},"256":{"body":"Type: Permission The permissions applied to the node.","breadcrumbs":"Configuration » Column Renderer » permissions","id":"256","title":"permissions"},"257":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink, it will hold information about the symlink resolved node. Else, it will hold information the actual node. It the symlink is broken, it will be null.","breadcrumbs":"Configuration » Column Renderer » canonical","id":"257","title":"canonical"},"258":{"body":"Type: nullable Resolved Node Metadata If the node is a symlink and is not broken, it will hold information about the symlink resolved node. However, it will never hold information about the actual node. It will instead be null.","breadcrumbs":"Configuration » Column Renderer » symlink","id":"258","title":"symlink"},"259":{"body":"Type: integer Index (starting from 0) of the node.","breadcrumbs":"Configuration » Column Renderer » index","id":"259","title":"index"},"26":{"body":"This configuration is exposed via the xplr.config.general API. It contains the following fields:","breadcrumbs":"Configuration » General Config » General Config","id":"26","title":"General Config"},"260":{"body":"Type: integer Relative index from the focused node (i.e. 0th node).","breadcrumbs":"Configuration » Column Renderer » relative_index","id":"260","title":"relative_index"},"261":{"body":"Type: boolean true if the node is before the focused node.","breadcrumbs":"Configuration » Column Renderer » is_before_focus","id":"261","title":"is_before_focus"},"262":{"body":"Type: boolean true if the node is after the focused node.","breadcrumbs":"Configuration » Column Renderer » is_after_focus","id":"262","title":"is_after_focus"},"263":{"body":"Type: string The tree component based on the node's index.","breadcrumbs":"Configuration » Column Renderer » tree","id":"263","title":"tree"},"264":{"body":"Type: string The prefix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » prefix","id":"264","title":"prefix"},"265":{"body":"Type: string The suffix applicable for the node.","breadcrumbs":"Configuration » Column Renderer » suffix","id":"265","title":"suffix"},"266":{"body":"Type: boolean true if the node is selected.","breadcrumbs":"Configuration » Column Renderer » is_selected","id":"266","title":"is_selected"},"267":{"body":"Type: boolean true if the node is under focus.","breadcrumbs":"Configuration » Column Renderer » is_focused","id":"267","title":"is_focused"},"268":{"body":"Type: integer The total number of the nodes.","breadcrumbs":"Configuration » Column Renderer » total","id":"268","title":"total"},"269":{"body":"Type: mapping of string and string The applicable meta object for the node.","breadcrumbs":"Configuration » Column Renderer » meta","id":"269","title":"meta"},"27":{"body":"Type: boolean Set it to true enable scrolling using mouse.","breadcrumbs":"Configuration » General Config » enable_mouse","id":"27","title":"enable_mouse"},"270":{"body":"Permission contains the following fields: user_read user_write user_execute group_read group_write group_execute other_read other_write other_execute sticky setgid setuid Each field holds a boolean value.","breadcrumbs":"Configuration » Column Renderer » Permission","id":"270","title":"Permission"},"271":{"body":"It contains the following fields. absolute_path extension is_dir is_file is_readonly mime_essence size human_size","breadcrumbs":"Configuration » Column Renderer » Resolved Node Metadata","id":"271","title":"Resolved Node Metadata"},"272":{"body":"xplr.fn.custom.fmt_simple_column = function(m) return m.prefix .. m.relative_path .. m.suffix\nend xplr.config.general.table.header.cols = { { format = \" path\" }\n} xplr.config.general.table.row.cols = { { format = \"custom.fmt_simple_column\" }\n} xplr.config.general.table.col_widths = { { Percentage = 100 }\n} -- With this config, you should only see a single column displaying the\n-- relative paths.","breadcrumbs":"Configuration » Column Renderer » Example: Customizing Table Renderer","id":"272","title":"Example: Customizing Table Renderer"},"273":{"body":"The default key binding is inspired by vim and slightly overlaps with nnn , but it's supposed to be customized as per user requirements. When you press ? in default mode , you can see the complete list of modes and the key mappings for each mode.","breadcrumbs":"Default Key Bindings » Default Key Bindings","id":"273","title":"Default Key Bindings"},"274":{"body":"key remaps action . show hidden / ctrl-f search : action ? global help menu G go to bottom V ctrl-a select/unselect all ctrl-c terminate ctrl-i tab next visited path ctrl-o last visited path ctrl-r refresh screen ctrl-u clear selection ctrl-w switch layout d delete down j down enter quit with result f filter g go to h left back k up up l right enter q quit r rename s sort space v toggle selection ~ go home [0-9] input","breadcrumbs":"Default Key Bindings » default","id":"274","title":"default"},"275":{"body":"key remaps action ctrl-c terminate esc escape","breadcrumbs":"Default Key Bindings » recover","id":"275","title":"recover"},"276":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"276","title":"filter"},"277":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word down j to down enter to index esc cancel k up to up [0-9] input","breadcrumbs":"Default Key Bindings » number","id":"277","title":"number"},"278":{"body":"key remaps action ctrl-c terminate esc cancel f follow symlink g top x open in gui","breadcrumbs":"Default Key Bindings » go to","id":"278","title":"go to"},"279":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-n down down ctrl-p up up ctrl-u remove line ctrl-w remove last word enter esc focus left back right enter tab toggle selection","breadcrumbs":"Default Key Bindings » search","id":"279","title":"search"},"28":{"body":"Type: boolean Set it to true to show hidden files.","breadcrumbs":"Configuration » General Config » show_hidden","id":"28","title":"show_hidden"},"280":{"body":"key remaps action c copy here ctrl-c terminate esc cancel m move here x open in gui","breadcrumbs":"Default Key Bindings » selection ops","id":"280","title":"selection ops"},"281":{"body":"key remaps action ! shell c create ctrl-c terminate e open in editor esc cancel l logs m toggle mouse q quit options s selection operations [0-9] go to index","breadcrumbs":"Default Key Bindings » action to","id":"281","title":"action to"},"282":{"body":"key remaps action ctrl-c terminate d create directory esc cancel f create file","breadcrumbs":"Default Key Bindings » create","id":"282","title":"create"},"283":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create file esc cancel","breadcrumbs":"Default Key Bindings » create file","id":"283","title":"create file"},"284":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter create directory esc cancel","breadcrumbs":"Default Key Bindings » create directory","id":"284","title":"create directory"},"285":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter rename esc cancel","breadcrumbs":"Default Key Bindings » rename","id":"285","title":"rename"},"286":{"body":"key remaps action D force delete ctrl-c terminate d delete esc cancel","breadcrumbs":"Default Key Bindings » delete","id":"286","title":"delete"},"287":{"body":"key remaps action ! reverse sorters E by canonical extension reverse M by canonical mime essence reverse N by node type reverse R by relative path reverse S by size reverse backspace remove last sorter ctrl-c terminate ctrl-r reset sorters ctrl-u clear sorters e by canonical extension enter esc done m by canonical mime essence n by node type r by relative path s by size","breadcrumbs":"Default Key Bindings » sort","id":"287","title":"sort"},"288":{"body":"key remaps action R relative does not contain backspace remove last filter ctrl-c terminate ctrl-r reset filters ctrl-u clear filters enter esc done r relative does contain","breadcrumbs":"Default Key Bindings » filter","id":"288","title":"filter"},"289":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does contain","id":"289","title":"relative path does contain"},"29":{"body":"Type: boolean Set it to true to use only a subset of selected operations that forbids executing commands or performing write operations on the file-system.","breadcrumbs":"Configuration » General Config » read_only","id":"29","title":"read_only"},"290":{"body":"key remaps action backspace remove last character ctrl-c terminate ctrl-u remove line ctrl-w remove last word enter apply filter esc cancel","breadcrumbs":"Default Key Bindings » relative path does not contain","id":"290","title":"relative path does not contain"},"291":{"body":"key remaps action 1 default 2 no help menu 3 no selection panel 4 no help or selection ctrl-c terminate esc cancel","breadcrumbs":"Default Key Bindings » switch layout","id":"291","title":"switch layout"},"292":{"body":"xplr supports pluggable Lua modules that can be used to easily configure or extend xplr UI and functionalities. Installing Plugins Writing Plugins Awesome Plugins","breadcrumbs":"Plugin » Plugin","id":"292","title":"Plugin"},"293":{"body":"Until we get a cool plugin manager, let's install plugins manually using the following procedure: Add the following line in ~/.config/xplr/init.lua package.path = os.getenv(\"HOME\") .. '/.config/xplr/plugins/?/src/init.lua' Clone the plugin mkdir -p ~/.config/xplr/plugins git clone https://github.com/sayanarijit/material-landscape2.xplr ~/.config/xplr/plugins/material-landscape2 Require the module in ~/.config/xplr/init.lua require(\"material-landscape2\").setup() -- The setup arguments might differ for different plugins.\n-- Visit the project README for setup instructions.","breadcrumbs":"Plugin » Installing Plugins » Installing Plugins","id":"293","title":"Installing Plugins"},"294":{"body":"Anyone who can write Lua code, can write xplr plugins. Just follow the instructions and best practices:","breadcrumbs":"Plugin » Writing Plugins » Writing Plugins","id":"294","title":"Writing Plugins"},"295":{"body":"xplr plugins are named using hiphen (-) separated words that may also include integers. They will be plugged using the require() function in Lua.","breadcrumbs":"Plugin » Writing Plugins » Naming","id":"295","title":"Naming"},"296":{"body":"A minimal plugin should confirm to the following structure: plugin-name\n├── README.md\n└── src └── init.lua You can also use this template .","breadcrumbs":"Plugin » Writing Plugins » Structure","id":"296","title":"Structure"},"297":{"body":"This is where you document what the plugin does, how to use it, etc.","breadcrumbs":"Plugin » Writing Plugins » README.md","id":"297","title":"README.md"},"298":{"body":"This file is executed to load the plugin. It should expose a setup() function, which will be used by the users to setup the plugin. Example: local function setup(args) local xplr = xplr -- do stuff with xplr\nend return { setup = setup }","breadcrumbs":"Plugin » Writing Plugins » src/init.lua","id":"298","title":"src/init.lua"},"299":{"body":"When publishing plugins on GitHub or other repositories, it's a best practice to append .xplr to the name to make them distinguishable. Similar to the *.nvim naming convention for Neovim plugins. Finally, after publishing, don't hesitate to let us know .","breadcrumbs":"Plugin » Writing Plugins » Publishing","id":"299","title":"Publishing"},"3":{"body":"Although speed is not the primary concern, xplr is already fast enough so that you can take it out for a walk into your node_modules or /nix/store any time you want. I currently measure the most commonly used operations and I have seen it improve significantly over time, and it's only the start. Tip: A quick and easy way to optimize UI rendering is reducing the number of columns in the table. Note: If you feel xplr is not behaving at its optimal, this is probably because I am waiting for someone to complain. I want to avoid optimizing things I don't need to, because optimization often requires either complexity or feature sacrifice or both.","breadcrumbs":"Introduction » Fast","id":"3","title":"Fast"},"30":{"body":"Type: boolean Set it to true when the special recover mode gets too annoying to appreciate the good intentions. When enabled, typing the wrong keys won't result in any action.","breadcrumbs":"Configuration » General Config » disable_recover_mode","id":"30","title":"disable_recover_mode"},"300":{"body":"Visit Awesome Plugins for xplr plugin examples.","breadcrumbs":"Plugin » Writing Plugins » Examples","id":"300","title":"Examples"},"301":{"body":"Tutorial: Adding a New Mode Example: Using Environment Variables and Pipes Example: Using Lua Function Calls Example: Customizing Table Renderer","breadcrumbs":"Plugin » Writing Plugins » Also See","id":"301","title":"Also See"},"302":{"body":"Here's a list of awesome xplr plugins that you might want to check out. If none of the following plugins work for you, it's very easy to write your own .","breadcrumbs":"Plugin » Awesome Plugins » Awesome Plugins","id":"302","title":"Awesome Plugins"},"303":{"body":"Extension Integration Theme","breadcrumbs":"Plugin » Awesome Plugins » Categories","id":"303","title":"Categories"},"304":{"body":"type-to-nav.xplr Inspired by nnn's type-to-nav mode for xplr, with some tweaks. completion.xplr The missing tab completion for xplr input buffer. comex.xplr One xplr plugin to compress and extract them all.","breadcrumbs":"Plugin » Awesome Plugins » Extension","id":"304","title":"Extension"},"305":{"body":"dragon.xplr Drag and drop files using dragon . dua-cli.xplr Get the disk usage using dua-cli with selection support. fzf.xplr Fuzzy search using fzf to focus on a file or enter into a directory. paste-rs.xplr Use this plugin to paste your files to paste.rs , and open/delete them later using fzf . preview-tabbed.xplr Preview paths using suckless tabbed and nnn preview-tabbed . qrcp.xplr Send and receive files via QR code using qrcp . trash-cli.xplr Trash files and directories using trash-cli . xargs.xplr Batch execute commands on the focused or selected files using xargs. xclip.xplr Copy and paste with system clipboard using xclip . zoxide.xplr Change directory using the zoxide database.","breadcrumbs":"Plugin » Awesome Plugins » Integration","id":"305","title":"Integration"},"306":{"body":"material-landscape.xplr Material Landscape material-landscape2.xplr Material Landscape 2 zentable.xplr A clean, distraction free xplr table UI icons.xplr An icon theme for xplr.","breadcrumbs":"Plugin » Awesome Plugins » Theme","id":"306","title":"Theme"},"307":{"body":"xplr is designed to integrate well with other tools and commands. It can be used as a file picker or a pluggable file manager. Awesome Integrations","breadcrumbs":"Integration » Integration","id":"307","title":"Integration"},"308":{"body":"Here's a list of awesome xplr integrations that you might want to check out. If none of the following integrations work for you, you can create your own and let us know .","breadcrumbs":"Integration » Awesome Integrations » Awesome Integrations","id":"308","title":"Awesome Integrations"},"309":{"body":"Editor Shell Security Tools","breadcrumbs":"Integration » Awesome Integrations » Categories","id":"309","title":"Categories"},"31":{"body":"Type: nullable string This is the shape of the cursor visible when the input buffer contains some string.","breadcrumbs":"Configuration » General Config » cursor.format","id":"31","title":"cursor.format"},"310":{"body":"xplr.vim vim-floaterm","breadcrumbs":"Integration » Awesome Integrations » Editor","id":"310","title":"Editor"},"311":{"body":"powerlevel10k","breadcrumbs":"Integration » Awesome Integrations » Shell","id":"311","title":"Shell"},"312":{"body":"gpg-tui","breadcrumbs":"Integration » Awesome Integrations » Security Tools","id":"312","title":"Security Tools"},"313":{"body":"Saner key bindings. Pipes. Native search & filter. Create, copy, move, delete files directly. logging support. Version compatibility instructions. Implement CLI arguments. ~Add support for tabs and/or panes (non native)~ hacked | discussion ~Implement bookmarks.~ hacked Add sorting support. Add filter support. File previews. Implement plugins support (or some way to easily share configuration). Bigger (and better) help menu. Offline docs. Support for background services. ~Customize~ switch UI in run-time. More tests and benchmarks. Measure code coverage. Improve the vim plugin . Cleanup, refactor, optimize. add more Like this project so far? Please consider contributing .","breadcrumbs":"TODO » TODO","id":"313","title":"TODO"},"314":{"body":"These are the alternative TUI/CLI file managers/explorers you might want to check out (in no particular order). nnn vifm ranger lf joshuto fff mc broot hunter noice clifm clifm (non curses) add more","breadcrumbs":"Alternatives » Alternatives","id":"314","title":"Alternatives"},"315":{"body":"When you upgrade xplr, you might see an error like this Incompatible script version in: /home/sayanarijit/.config/xplr/init.lua. The script version is: 0.9.0, the required version is: 0.10.1. Visit https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide All you need to do is follow the instructions starting from your config version, all the way to the required version. Expand for more information With every update, we either implement a major breaking change (e.g. deprecating or replacing messages), or a minor feature addition (e.g. adding new messages) or patch, fixes, and optimization (e.g. performance optimization). Knowing that we use the {major}.{minor}.{patch} versioning format, Major version mismatch are generally incompatible. xplr will fail with error. Minor version upgrades (not downgrades) and patch fixes are backwards compatible. You might get notified by log a message which you can disable by updating the version in your config file. However, if the config file has a higher value for the minor version than the app, then also xplr will fail with error, suggesting you to visit this page. Though in that case, you will be downgrading your config file based on your app version. e.g. 1.0.0 -> 1.0.x: Bug fix (fully compatible). 1.0.0 -> 1.x.x: Only backwards compatible. You can't generally use for e.g. app-1.0.0 with config-1.1.0. But vice versa is fine. 1.0.0 -> x.x.x: Not compatible at all. Note that until we're v1, we'll be using the {minor} version number as {major}, and the {patch} fix number as {minor} to determine compatibility.","breadcrumbs":"Upgrade Guide » Upgrade Guide","id":"315","title":"Upgrade Guide"},"316":{"body":"v0.13.7 -> v0.14.5 macOS users need to place their config file (init.lua) in $HOME/.config/xplr/ or /etc/xplr/. Library users please refer to the latest API docs. Check out the new messages: {Start|Stop|Toggle}Fifo. These enable support for FIFO based file previews . You can disable the recover mode using config.general.disable_recover_mode = true. Try running xplr --help. Yes, CLI has been implemented. Since version v0.14.3, StartFifo and ToggleFifo will write to the FIFO path when called. So, there's no need to pipe the focus path explicitely. Since version v0.14.3, general config xplr.config.start_fifo is available which can be set to a file path to start a fifo when xplr starts. Since version v0.14.4, $XPLR_SESSION_PATH can be used to dump session related data. Like this project so far? Please consider contributing . v0.12.1 -> v0.13.7 Lua functions called using CallLua and CallLuaSilently messages will receive CallLuaArg object as the function argument (instead of the App object). Each node_types config will inherit defaults from matching less specifig node_types config and overwrite them. Since version v0.13.2, you don't need to use/send Refresh anymore. It will be auto-handled by xplr. v0.11.1 -> v0.12.1 xplr.config.node_types.mime_essence has split into type and subtype. Hence, instead of xplr.config.node_types.mime_essence[\"text/plain\"] = .. use xplr.config.node_types.mime_essence[\"text\"] = { plain = .. }. You can also define xplr.config.node_types.mime_essence[\"text\"][\"*\"] that will match all text types (text/*). v0.10.2 -> v0.11.1 remaps: has been removed to avoid confusion. Use lua assignments instead. For e.g. xplr.config.modes.builtin.default.key_bindings.on_key[\"v\"] = xplr.config.modes.builtin.default.key_bindings.on_key.space v0.9.1 -> v0.10.2 config.yml has been fully replaced with init.lua . If you have a lot of customization in your config.yml, xplr-yml2lua can help you with migrating it to init.lua. Handlebars templates has been replaced with Lua functions . You can either remove the customizations or overwrite the functions accordingly. Added new messages CallLua and CallLuaSilently to call lua functions. The app state will be passed as input to the functions, and the returned messages will be handled by xplr. CallLua and CallLuaSilently are more flexible (and probably faster) alternatives to Call, CallSilently, BashExec and BashExecSilently. e.g. v0.9.0 -> v0.9.1 You can now set remaps: {key: null} to un-map a key. gx will open the item under focus. New key map :sx will open the selected items. v0.8.0 -> v0.9.0 Your previous config should mostly work fine. However, in case you are using SwitchMode heavily in your custom config, follow along. Introduced new message PopMode. You might want to use this message instead of SwitchMode* when returning back to the previous mode. After using (the group of) PopMode and SwitchMode* messages, you are now required to Refresh manually to avoid the UI lag. Pressing any invalid key will now lead you to the recover mode and will protect you from typing further invalid keys. Press esc to escape the recover mode. Introduced new message LogWarning, similar to other Log* messages. Creating files and directories has been optimized for batch creation. v0.7.2 -> v0.8.0 If you have made changes to the config file, Replace message Explore with ExplorePwd or ExplorePwdAsync or probably ExploreParentsAsync. Pipe $XPLR_PIPE_FOCUS_OUT has been removed. Use $XPLR_FOCUS_PATH env var instead. You might want to review your path escaping logics. For e.g. use echo FocusPath: \"'\"$PWD\"'\" >> $PIPE instead of echo \"FocusPath: $PWD\" >> $PIPE. v0.7.0 -> v0.7.2 Just update the version in your config file. For version >= v0.7.1, you might want to free up or remap the tab key in search mode to enable easy selection during search. v0.6.0 -> v0.7.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, You can make the Table: ..., InputAndLogs: ... layout values null and define the common properties in the general.panel_ui instead. v0.5.13 -> v0.6.0 If you haven't made any changes in the config file, you should be fine just updating the version number. Else, Rename add_modifier: {bits: 1} to add_modifiers: [Bold], sub_modifier: {bits: 1} to sub_modifiers: [Bold] and so on. Rename percentage: 10 to Percentage: 10, ratio: 1 to Ratio: 1 and so on. You might want to free up or remap the ctrl-w key binding in default mode to enable layout switching. Optionally, checkout this new theme to learn more about what's new. v0.5.0 -> v0.5.13 Just update the version in your config file. For versions >= v0.5.8, you can set $OPENER env var to declare a global GUI file opener (to open files using keys gx). You might also want to update other mappings to handle files with names starting with - (hiphen). For example, instead of rm ${filename} use rm -- ${filename}. Same goes for cp, mv, cat, touch etc. For version >= v0.5.13, you might want to use the more specific SwitchModeBuiltin and SwitchModeCustom messages instead of the general SwitchMode message. v0.4.3 -> v0.5.0 If you haven't have any changes in the config file, you should be fine just updating the version number. Else do the following Replace {RelativePathIs, case_sensitive: true} with RelativePathIs. Replace {RelativePathIs, case_sensitive: false} with IRelativePathIs. Do the same with other filters you are using. You might want to update your backspace handling to use the RemoveInputBufferLastCharacter message. You might want to free-up f, s, ctrl-r and ctrl-u key bindings in the default mode, or remap them. You might want to use the new UI variables. Update your config version to v0.5.0. v0.4.2 -> v0.4.3 If you have customized general.table.row.cols, you might want to update it to use the new variables with better symlink support. v0.4.1 -> v0.4.2 In case you have mapped the keys q, ctrl-i and ctrl-o, you may want to revisit the default mode key bindings and remap accordingly to use the new functionalities. v0.3.13 -> v0.4.1 A lot has changed (apologies). But I promise from now on, upgrading will be much less painful (thanks to @maximbaz 's valuable inputs and code reviews ). So, to start with the upgrade, let's remove everything from your config file except the version field and your custom modifications. If version is the only thing remaining, update it to v0.4.1 and you are done. Else, do the following Rename general.focused_ui to general.focus_ui ( see here ). Rename filetypes to node_types. ( see here ) Rename custom field to meta. ( see here ) Move icon to meta.icon. ( see here ) Rename normal_ui to default_ui. ( see here ) Split modes into modes.builtin and modes.custom ( see here ). Migrate your custom modes to modes.custom. And copy only the changes in the in-built modes in modes.builtin. Finally, update the version to v0.4.1. v0.3.8 -> v0.3.13 Your current config should work fine. However, you might want to replace some Call and BashExec messages with CallSilently and BashExecSilently to remove the flickering of the screen. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for Call and BashExec in the new config. Compare and probably replace the associated actions in your current config v0.3.0 -> v0.3.8 Your current config should work fine. However, you might want to replace some ResetNodeFilters messages with RemoveNodeFilter and RemoveNodeFilterFromInput to get a better search and filter experience. If you haven't made any changes to the configuration, you can delete and regenerate it. Else, do the following Check the new default config by temporarily removing your current config (with backup) and dumping the new config. Search for RemoveNodeFilterFromInput in the new config. Compare and probably replace the associated actions in your current config. v0.2.14 -> v0.3.0 If you haven't made any changes to the configuration, you can delete and regenerate it. Else do the following: $XPLR_APP_YAML has been removed. You can use Debug to export the app state. $XPLR_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_GLOBAL_HELP_MENU has been ported to file $XPLR_PIPE_GLOBAL_HELP_MENU_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_DIRECTORY_NODES has been ported to file $XPLR_PIPE_DIRECTORY_NODES_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_LOGS has been ported to file $XPLR_PIPE_LOGS_OUT. Use cat instead of echo, < instead of <<< etc. $XPLR_PIPE_RESULT has been ported to file $XPLR_PIPE_RESULT_OUT. Use cat instead of echo, < instead of <<< etc. Finally, update the version in your config file.","breadcrumbs":"Upgrade Guide » Instructions","id":"316","title":"Instructions"},"317":{"body":"Building an active community of awesome people and learning stuff together is one of my reasons to publish this tool and maintain it. Hence, please feel free to reach out via your preferred way. Real-time chat lovers can join our discord channel . Forum discussion veterans can start a new GitHub discussion . BTW I like Miyazaki and Shinkai works.","breadcrumbs":"Community » Community","id":"317","title":"Community"},"318":{"body":"If you like xplr, and want to contribute, that would be really awesome. You can contribute to this project in the following ways Contribute your time and expertise (read CONTRIBUTING.md for instructions). Developers: You can help me improve my code, fix things, implement features etc. Repository maintainers: You can save the users from the pain of managing xplr in their system manually. Code Reviewers: Teach me your ways of code. Designers: You can make the logo even more awesome, donate stickers and blog post worthy pictures. Bloggers, YouTubers & broadcasters: You can help spread the word. Contribute by donating. You can fuel me with coins of encouragement or buy me a coffee . For further queries or concern related to xplr, just ask us .","breadcrumbs":"Contribute » Backers","id":"318","title":"Backers"},"32":{"body":"Type: Style Style of the cursor.","breadcrumbs":"Configuration » General Config » cursor.style","id":"32","title":"cursor.style"},"33":{"body":"Type: string The name of one of the layout to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_layout","id":"33","title":"initial_layout"},"34":{"body":"Type: string The name of one of the mode to use when xplr loads.","breadcrumbs":"Configuration » General Config » initial_mode","id":"34","title":"initial_mode"},"35":{"body":"Type: list of Node Sorter Applicable Initial group if sorters applied to the nodes list in the table.","breadcrumbs":"Configuration » General Config » initial_sorting","id":"35","title":"initial_sorting"},"36":{"body":"Type: Style Default style of the table.","breadcrumbs":"Configuration » General Config » table.style","id":"36","title":"table.style"},"37":{"body":"Type: nullable integer Default spacing of the columns in the table.","breadcrumbs":"Configuration » General Config » table.col_spacing","id":"37","title":"table.col_spacing"},"38":{"body":"Type: nullable list of Constraint Width of each column in the table.","breadcrumbs":"Configuration » General Config » table.col_widths","id":"38","title":"table.col_widths"},"39":{"body":"Type: nullable integer Height of the table header.","breadcrumbs":"Configuration » General Config » table.header.height","id":"39","title":"table.header.height"},"4":{"body":"xplr prefers to stay minimal, both in terms of features and binary size, but just like speed, minimalism isn't as aggressively pursued as configurability. If adding some feature, lines of code, or a dependency allows the users to be a little more productive or allows xplr to be a little more configurable, it will be considered. But of-course, the bulk vs productivity gain per user balance will also be considered in the decision-making.","breadcrumbs":"Introduction » Minimalist","id":"4","title":"Minimalist"},"40":{"body":"Type: Style Style of table header.","breadcrumbs":"Configuration » General Config » table.header.style","id":"40","title":"table.header.style"},"41":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ), that define the content and style of header.","breadcrumbs":"Configuration » General Config » table.header.cols","id":"41","title":"table.header.cols"},"42":{"body":"Type: nullable integer Height of each row in the table.","breadcrumbs":"Configuration » General Config » table.row.height","id":"42","title":"table.row.height"},"43":{"body":"Type: Style Style of table rows.","breadcrumbs":"Configuration » General Config » table.row.style","id":"43","title":"table.row.style"},"44":{"body":"Type: List of column configuration Each column config contains format field (string) and style field ( Style ). However, unlike table.header.cols , the format field here points to a column renderer function .","breadcrumbs":"Configuration » General Config » table.row.cols","id":"44","title":"table.row.cols"},"45":{"body":"Type: List of tree configuration It expects a list of three items. The first component of the tree, then the middle components, and finally the last component of the tree. Each item requires the format field which is a string, and the style field, which is the Style object. Example: xplr.config.general.table.tree = { { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"├─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } }, { format = \"╰─\", style = { add_modifiers = { \"Bold\" }, bg = nil, fg = \"Blue\", sub_modifiers = nil } },\n} TODO: Continue documentation.","breadcrumbs":"Configuration » General Config » table.tree","id":"45","title":"table.tree"},"46":{"body":"xplr is a modal file explorer. That means the users switch between different modes, each containing a different set of key bindings to avoid clashes. Users can switch between these modes at run-time. The modes can be configured using the xplr.config.modes Lua API. It contains the following fields: builtin custom","breadcrumbs":"Configuration » Modes » Modes","id":"46","title":"Modes"},"47":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.builtin API. xplr by default provides the following builtin modes: default recover selection_ops create create_directory create_file number go_to rename delete action search filter relative_path_does_contain relative_path_does_not_contain sort switch_layout quit Visit the Default Key Bindings to see what each mode does.","breadcrumbs":"Configuration » Modes » builtin","id":"47","title":"builtin"},"48":{"body":"Type: mapping of string and Mode This is exposed by the xplr.config.modes.custom API. It allows the users to define custom modes. Example: xplr.config.modes.custom.example = { name = \"example\", key_bindings = { on_key = { enter = { help = \"default mode\", messages = { \"PopMode\", { SwitchModeBuiltin = \"default\" } } } } }\n} xplr.config.general.initial_mode = \"example\" -- when you load xplr, you should be in the \"example\" mode,\n-- pressing \"enter\" should take you to the \"default\" mode.","breadcrumbs":"Configuration » Modes » custom","id":"48","title":"custom"},"49":{"body":"A mode contains the following information: name help extra_help key_bindings","breadcrumbs":"Configuration » Modes » Mode","id":"49","title":"Mode"},"5":{"body":"Embedded LuaJIT for portability and extensibility. Switchable recover mode: Saves you from doing unwanted things when in a hurry. Sane (vim-like) defaults: Use h, j, k, l or arrow keys for basic navigation. Go to top using g g, and bottom using G. Travel history using ctrl-o and ctrl-i. Go to home directory using ~. Enter search mode with / or ctrl-f. Go to absolute index (e.g. 4) using 4 enter or : 4 enter. Go to relative index (e.g. 4 down) using 4 down or : 4 down. Follow symlink using g f. Open in GUI using g x. Spawn terminal using : !. Toggle selection using v or space. Toggle select all using V or ctrl-a. Clear selections using ctrl-u. Separate keys for navigation: navigation keys are separated from the action keys (e.g. file opening action) to avoid mistakenly performing unwanted actions while navigating. Always visible panels to save you brain cycles: Selection list. Help menu. Input & logs. Filter and sort pipeline. Batch creation: Create multiple files and directories without repeating keys. Batch sort & filter: Apply sorters and filters in without repeating keys. Custom file properties: Display custom file properties with custom colors in the table using Lua functions. Input buffer: Read user input using the built-in input buffer with customizable behavior. Switchable layouts: Switch layouts dynamically without leaving xplr. Saved locations: Never lose context when traveling back and forth directories. Auto refresh state: Auto refresh app state when the $PWD changes. Manually refresh UI when other apps mess it up. FIFO-based previews: Easy to manage FIFO file that can be used to integrate with previewers . Different quit options: Quit with success without any output (q). Quit with success and the result printed on stdout (enter). Quit with success and the present working directory printed on stdout (: q p). Quit with success and the path under focus printed on stdout (: q f). Quit with success and the selection printed on stdout (: q s). Quit with failure (ctrl-c).","breadcrumbs":"Introduction » Other features","id":"5","title":"Other features"},"50":{"body":"Type: string This is the name of the mode visible in the help menu.","breadcrumbs":"Configuration » Modes » name","id":"50","title":"name"},"51":{"body":"Type: nullable string If specified, the help menu will display this instead of the auto generated mappings.","breadcrumbs":"Configuration » Modes » help","id":"51","title":"help"},"52":{"body":"Type: nullable string If specified, the help menu will display this along-side the auto generated help menu.","breadcrumbs":"Configuration » Modes » extra_help","id":"52","title":"extra_help"},"53":{"body":"Type: Key Bindings The key bindings available in that mode.","breadcrumbs":"Configuration » Modes » key_bindings","id":"53","title":"key_bindings"},"54":{"body":"Key bindings define how each keyboard input will be handled in a specific mode. See the default key bindings for example. Key bindings contains the following information: on_key on_alphabet on_number on_special_character default","breadcrumbs":"Configuration » Modes » Key Bindings","id":"54","title":"Key Bindings"},"55":{"body":"Type: mapping of Key to nullable Action Defines what to do when a specific key is pressed.","breadcrumbs":"Configuration » Modes » on_key","id":"55","title":"on_key"},"56":{"body":"Type: nullable Action An action to perform if the keyboard input is an alphabet and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_alphabet","id":"56","title":"on_alphabet"},"57":{"body":"Type: nullable Action An action to perform if the keyboard input is a number and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_number","id":"57","title":"on_number"},"58":{"body":"Type: nullable Action An action to perform if the keyboard input is a special character and is not mapped via the on_key field.","breadcrumbs":"Configuration » Modes » on_special_character","id":"58","title":"on_special_character"},"59":{"body":"Type: nullable Action Default action to perform in case of a keyboard input not mapped via any of the on_key , on_alphabet , on_number or on_special_character field.","breadcrumbs":"Configuration » Modes » default","id":"59","title":"default"},"6":{"body":"Nice to you have here! Let's quickly start our xplr journey with the following steps: Install Post Install","breadcrumbs":"Quickstart » Quickstart","id":"6","title":"Quickstart"},"60":{"body":"A key can be one of the following: 0, 1, ... 9 a, b, ... z A, B, ... Z f1, f2, ... f12 ctrl-a, ctrl-b, ... ctrl-z alt-a, alt-b, ... alt-z backspace left right up down home end page-up page-down back-tab delete insert enter tab esc And finally, the special characters - including space (\" \").","breadcrumbs":"Configuration » Modes » Key","id":"60","title":"Key"},"61":{"body":"An action contains the following information: help messages","breadcrumbs":"Configuration » Modes » Action","id":"61","title":"Action"},"62":{"body":"Type: nullable string Description of what it does. If unspecified, it will be excluded from the help menu.","breadcrumbs":"Configuration » Modes » help","id":"62","title":"help"},"63":{"body":"Type: A list of Message to send. The list of messages to send when a key is pressed.","breadcrumbs":"Configuration » Modes » messages","id":"63","title":"messages"},"64":{"body":"Assuming xplr is installed and setup , let's add our own mode to integrate xplr with fzf . We'll call it fzxplr mode. First, let's add a custom mode called fzxplr, and map the key F to an action that will call fzf to search and focus on a file or enter into a directory. xplr.config.modes.custom.fzxplr = { name = \"fzxplr\", key_bindings = { on_key = { F = { help = \"search\", messages = { { BashExec = [===[ PTH=$(cat \"${XPLR_PIPE_DIRECTORY_NODES_OUT:?}\" | awk -F/ '{print $NF}' | fzf) if [ -d \"$PTH\" ]; then echo ChangeDirectory: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" else echo FocusPath: \"'\"${PWD:?}/${PTH:?}\"'\" >> \"${XPLR_PIPE_MSG_IN:?}\" fi ]===] }, \"PopMode\", }, }, }, default = { messages = { \"PopMode\", }, }, },\n} As you can see, the key F in mode fzxplr (the name can be anything) executes a script in bash. BashExec, PopMode, SwitchModeBuiltin, ChangeDirectory and FocusPath are messages , $XPLR_PIPE_MSG_IN, $XPLR_PIPE_DIRECTORY_NODES_OUT are environment variables exported by xplr before executing the command. They contain the path to the input and output pipes that allows external tools to interact with xplr. Now that we have our new mode ready, let's add an entry point to this mode via the default mode. xplr.config.modes.builtin.default.key_bindings.on_key[\"F\"] = { help = \"fzf mode\", messages = { { SwitchModeCustom = \"fzxplr\" }, },\n} Now let's try out the new xplr-fzf integration. xplr-fzf.gif Visit Awesome Plugins for more integration options.","breadcrumbs":"Configuration » Modes » Tutorial: Adding a New Mode","id":"64","title":"Tutorial: Adding a New Mode"},"65":{"body":"You can think of xplr as a server. Just like web servers listen to HTTP requests, xplr listens to messages . You can send these messages to an xplr session in the following ways: Via key bindings Via Lua function calls Via shell command using the input pipe","breadcrumbs":"Configuration » Message » Message","id":"65","title":"Message"},"66":{"body":"To send messages using the key bindings or Lua function calls , messages are represented in Lua syntax. For example: \"Quit\" { FocusPath = \"/path/to/file\" } { Call = { command = \"bash\", args = { \"-c\", \"read -p test\" } } } However, to send messages using the input pipe , they need to be represented using YAML (or JSON ) syntax. For example: Quit FocusPath: \"/path/to/file\" Call: { command: bash, args: [\"-c\", \"read -p test\"] }","breadcrumbs":"Configuration » Message » Format","id":"66","title":"Format"},"67":{"body":"","breadcrumbs":"Configuration » Message » Full List of Messages","id":"67","title":"Full List of Messages"},"68":{"body":"YAML: ExplorePwd Explore the present working directory and register the filtered nodes. This operation is expensive. So, try to avoid using it too often.","breadcrumbs":"Configuration » Message » \"ExplorePwd\"","id":"68","title":"\"ExplorePwd\""},"69":{"body":"YAML: ExplorePwdAsync Explore the present working directory and register the filtered nodes asynchronously. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExplorePwdAsync\"","id":"69","title":"\"ExplorePwdAsync\""},"7":{"body":"You can install xplr using one of the following ways. Each has their own advantages and limitations. For example, the Direct Download , From crates.io , and Build From Source methods allow the users to install the latest possible version of xplr, but they have one common drawback - the user will need to keep an eye on the releases, and manually upgrade xplr when a new version is available. One way to keep an eye on the releases is to watch the repository .","breadcrumbs":"Quickstart » Install » Install","id":"7","title":"Install"},"70":{"body":"YAML: ExploreParentsAsync Explore the present working directory along with its parents and register the filtered nodes. This operation happens asynchronously. That means, the xplr directory buffers won't be updated immediately. Hence, it needs to be used with care and probably with special checks in place. To explore just the $PWD synchronously, use ExplorePwd instead.","breadcrumbs":"Configuration » Message » \"ExploreParentsAsync\"","id":"70","title":"\"ExploreParentsAsync\""},"71":{"body":"YAML: Refresh Refresh the UI. But it will not re-explore the directory if the working directory is the same. If there is some change in the working directory and you want to re-explore it, use the Explore message instead. Also, it will not clear the screen. Use ClearScreen for that.","breadcrumbs":"Configuration » Message » \"Refresh\"","id":"71","title":"\"Refresh\""},"72":{"body":"YAML: ClearScreen Clears the screen.","breadcrumbs":"Configuration » Message » \"ClearScreen\"","id":"72","title":"\"ClearScreen\""},"73":{"body":"YAML: FocusNext Focus next node.","breadcrumbs":"Configuration » Message » \"FocusNext\"","id":"73","title":"\"FocusNext\""},"74":{"body":"YAML: FocusNextByRelativeIndex: int Focus on the nth node relative to the current focus where n is a given value. YAML Example: FocusNextByRelativeIndex: 2 Lua Example: { FocusNextByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusNextByRelativeIndex = int }","id":"74","title":"{ FocusNextByRelativeIndex = int }"},"75":{"body":"YAML: FocusNextByRelativeIndexFromInput Focus on the nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusNextByRelativeIndexFromInput\"","id":"75","title":"\"FocusNextByRelativeIndexFromInput\""},"76":{"body":"YAML: FocusPrevious Focus on the previous item.","breadcrumbs":"Configuration » Message » \"FocusPrevious\"","id":"76","title":"\"FocusPrevious\""},"77":{"body":"YAML: FocusPreviousByRelativeIndex: int Focus on the -nth node relative to the current focus where n is a given value. YAML Example: FocusPreviousByRelativeIndex: 2 Lua Example: { FocusPreviousByRelativeIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusPreviousByRelativeIndex = int }","id":"77","title":"{ FocusPreviousByRelativeIndex = int }"},"78":{"body":"YAML: FocusPreviousByRelativeIndexFromInput Focus on the -nth node relative to the current focus where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusPreviousByRelativeIndexFromInput\"","id":"78","title":"\"FocusPreviousByRelativeIndexFromInput\""},"79":{"body":"YAML: FocusFirst Focus on the first node.","breadcrumbs":"Configuration » Message » \"FocusFirst\"","id":"79","title":"\"FocusFirst\""},"8":{"body":"xplr can be installed from one of the following community maintained repositories: packaging status","breadcrumbs":"Quickstart » Install » Community Maintained Repositories","id":"8","title":"Community Maintained Repositories"},"80":{"body":"YAML: FocusLast Focus on the last node.","breadcrumbs":"Configuration » Message » \"FocusLast\"","id":"80","title":"\"FocusLast\""},"81":{"body":"YAML: FocusPath: string Focus on the given path. YAML Example: FocusPath: /path/to/file Lua Example: { FocusPath = \"/path/to/file\" }","breadcrumbs":"Configuration » Message » { FocusPath = \"string\" }","id":"81","title":"{ FocusPath = \"string\" }"},"82":{"body":"YAML: FocusPathFromInput Focus on the path read from input buffer.","breadcrumbs":"Configuration » Message » \"FocusPathFromInput\"","id":"82","title":"\"FocusPathFromInput\""},"83":{"body":"YAML: FocusByIndex: int Focus on the absolute nth node where n is a given value. YAML Example: FocusByIndex: 2 Lua Example: { FocusByIndex = 2 }","breadcrumbs":"Configuration » Message » { FocusByIndex = int }","id":"83","title":"{ FocusByIndex = int }"},"84":{"body":"YAML: FocusByIndexFromInput Focus on the absolute nth node where n is read from the input buffer.","breadcrumbs":"Configuration » Message » \"FocusByIndexFromInput\"","id":"84","title":"\"FocusByIndexFromInput\""},"85":{"body":"YAML: FocusByFileName: string Focus on the file by name from the present working directory. YAML Example: FocusByFileName: filename.ext Lua Example: { FocusByFileName = \"filename.ext\" }","breadcrumbs":"Configuration » Message » { FocusByFileName = \"string\" }","id":"85","title":"{ FocusByFileName = \"string\" }"},"86":{"body":"YAML: ChangeDirectory: string Change the present working directory ($PWD) YAML Example: ChangeDirectory: /path/to/directory Lua Example: { ChangeDirectory = \"/path/to/directory\" }","breadcrumbs":"Configuration » Message » { ChangeDirectory = \"string\" }","id":"86","title":"{ ChangeDirectory = \"string\" }"},"87":{"body":"YAML: Enter Enter into the currently focused path if it's a directory.","breadcrumbs":"Configuration » Message » \"Enter\"","id":"87","title":"\"Enter\""},"88":{"body":"YAML: Back Go back to the parent directory.","breadcrumbs":"Configuration » Message » \"Back\"","id":"88","title":"\"Back\""},"89":{"body":"YAML: LastVisitedPath Go to the last path visited.","breadcrumbs":"Configuration » Message » \"LastVisitedPath\"","id":"89","title":"\"LastVisitedPath\""},"9":{"body":"Official Community Repo sudo pacman -S xplr AUR Binary version: paru -S xplr-bin Git version: paru -S xplr-git","breadcrumbs":"Quickstart » Install » Arch Linux","id":"9","title":"Arch Linux"},"90":{"body":"YAML: NextVisitedPath Go to the next path visited.","breadcrumbs":"Configuration » Message » \"NextVisitedPath\"","id":"90","title":"\"NextVisitedPath\""},"91":{"body":"YAML: FollowSymlink Follow the symlink under focus to its actual location.","breadcrumbs":"Configuration » Message » \"FollowSymlink\"","id":"91","title":"\"FollowSymlink\""},"92":{"body":"YAML: BufferInput(String) Append/buffer the given string into the input buffer. YAML Example: BufferInput: foo Lua Example: { BufferInput = \"foo\" }","breadcrumbs":"Configuration » Message » { BufferInput = \"string\" }","id":"92","title":"{ BufferInput = \"string\" }"},"93":{"body":"YAML: BufferInputFromKey Append/buffer the characted read from a keyboard input into the input buffer.","breadcrumbs":"Configuration » Message » \"BufferInputFromKey\"","id":"93","title":"\"BufferInputFromKey\""},"94":{"body":"YAML: SetInputBuffer: string Set/rewrite the input buffer with the given string. When the input buffer is not-null (even if empty string) it will show in the UI. YAML Example: SetInputBuffer: foo Lua Example: { SetInputBuffer = \"foo\" }","breadcrumbs":"Configuration » Message » { SetInputBuffer = \"string\" }","id":"94","title":"{ SetInputBuffer = \"string\" }"},"95":{"body":"YAML: RemoveInputBufferLastCharacter Remove input buffer's last character.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastCharacter\"","id":"95","title":"\"RemoveInputBufferLastCharacter\""},"96":{"body":"YAML: RemoveInputBufferLastWord Remove input buffer's last word.","breadcrumbs":"Configuration » Message » \"RemoveInputBufferLastWord\"","id":"96","title":"\"RemoveInputBufferLastWord\""},"97":{"body":"YAML: ResetInputBuffer Reset the input buffer back to null. It will not show in the UI.","breadcrumbs":"Configuration » Message » \"ResetInputBuffer\"","id":"97","title":"\"ResetInputBuffer\""},"98":{"body":"YAML: SwitchMode: string Switch input mode . NOTE: To be specific about which mode to switch to, use SwitchModeBuiltin or SwitchModeCustom instead. YAML Example: SwitchMode: default Lua Example: { SwitchMode = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchMode = \"string\" }","id":"98","title":"{ SwitchMode = \"string\" }"},"99":{"body":"YAML: SwitchModeBuiltin: string Switch to a builtin mode . YAML Example: SwitchModeBuiltin: default Lua Example: { SwitchModeBuiltin = \"default\" }","breadcrumbs":"Configuration » Message » { SwitchModeBuiltin = \"string\" }","id":"99","title":"{ SwitchModeBuiltin = \"string\" }"}},"length":319,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"315":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"306":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"317":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":2.0},"314":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"316":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"316":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"316":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"305":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":10,"docs":{"2":{"tf":1.0},"273":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"318":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"316":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.0},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"303":{"tf":1.0},"309":{"tf":1.0}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"306":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":7,"docs":{"242":{"tf":1.7320508075688772},"272":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"318":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":25,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"21":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":5.196152422706632},"41":{"tf":1.0},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"316":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.0},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"314":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.23606797749979},"316":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":28,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"313":{"tf":1.0},"317":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"305":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"313":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"316":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"190":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":68,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"215":{"tf":2.0},"220":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"316":{"tf":1.0}}}},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"314":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":2.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"305":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"306":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":15,"docs":{"107":{"tf":2.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"305":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"316":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"316":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"313":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"315":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.7320508075688772},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"306":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":31,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.4142135623730951},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.0}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"u":{"a":{"df":55,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"314":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"313":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"241":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"243":{"tf":1.0},"269":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":3.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"316":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":8,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":4.0},"317":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"304":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":78,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0}},"e":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"314":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":1.7320508075688772},"243":{"tf":1.0},"256":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":14,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"2":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"316":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"318":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"317":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.4142135623730951}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"305":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"316":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}},"df":1,"docs":{"305":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"316":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"317":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"316":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.0},"316":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.0},"133":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":26,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"305":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"316":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"316":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.0},"316":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.4142135623730951}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":2.449489742783178},"316":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"316":{"tf":2.0},"98":{"tf":2.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"316":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.0},"316":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"316":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"278":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":22,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"313":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.0},"316":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.0},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":1,"docs":{"117":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"305":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"316":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"188":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"316":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":4,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.0}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"315":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"305":{"tf":1.0}}}},"df":40,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"305":{"tf":3.3166247903554},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"316":{"tf":1.0}}},"7":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"316":{"tf":1.0}}},"5":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"316":{"tf":2.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":2.0},"190":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":3.4641016151377544},"316":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":3.605551275463989},"318":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"307":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.7320508075688772},"302":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"305":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"1":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"259":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"260":{"tf":1.0}}}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"315":{"tf":2.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":2,"docs":{"231":{"tf":1.0},"272":{"tf":1.0}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"214":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.0},"60":{"tf":1.0}}},"2":{"0":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"21":{"tf":1.0},"214":{"tf":1.0},"291":{"tf":1.0},"306":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"214":{"tf":1.0},"291":{"tf":1.0}}},"4":{"df":2,"docs":{"291":{"tf":1.0},"5":{"tf":2.449489742783178}}},"5":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"df":4,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"60":{"tf":1.0}}},"a":{"b":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"v":{"df":2,"docs":{"141":{"tf":1.0},"317":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":2.0},"314":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"155":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"314":{"tf":2.0},"316":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"219":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0}}},"df":10,"docs":{"184":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"66":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"232":{"tf":1.0},"5":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"316":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"316":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"3":{"tf":1.0},"316":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"226":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"263":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}},"h":{"df":4,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":2.0},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"305":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"64":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"191":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":28,"docs":{"2":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":2,"docs":{"17":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"197":{"tf":1.0},"199":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"229":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"177":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}},"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":1,"docs":{"92":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}}},"g":{"df":1,"docs":{"315":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"17":{"tf":2.0},"19":{"tf":1.0},"317":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"24":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"y":{"df":1,"docs":{"318":{"tf":1.0}}}},"y":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"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":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}}}},"c":{"]":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"u":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"316":{"tf":1.0}}}}},"df":7,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":2.23606797749979},"188":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"232":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.4142135623730951},"287":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":3,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"23":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"305":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0},"5":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"306":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":10,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"154":{"tf":1.0},"294":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"242":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":36,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":2.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"157":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"263":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"318":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"240":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"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":{"293":{"tf":1.0}},"s":{"/":{"?":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"21":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":42,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"19":{"tf":1.0},"198":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":5.196152422706632},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":256,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"296":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"293":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"21":{"tf":1.0},"280":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"17":{"tf":1.0},"316":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"21":{"tf":2.23606797749979},"242":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":21,"docs":{"274":{"tf":2.8284271247461903},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"314":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.7320508075688772},"21":{"tf":1.0},"223":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.6457513110645907},"46":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"189":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"286":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"152":{"tf":1.0},"153":{"tf":2.449489742783178},"316":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":44,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"223":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"274":{"tf":1.0},"286":{"tf":2.0},"313":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":2.449489742783178}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"293":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.7320508075688772},"208":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"313":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"121":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"316":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"138":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"313":{"tf":1.0},"317":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"305":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":11,"docs":{"189":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":1,"docs":{"5":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"316":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"15":{"tf":2.23606797749979},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"a":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"253":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"212":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"3":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"292":{"tf":1.0},"313":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"316":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"281":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"187":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"305":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":3,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"188":{"tf":2.0},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"315":{"tf":1.7320508075688772}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"105":{"tf":1.0},"275":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":19,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":7,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"253":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":68,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"316":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"121":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"316":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"129":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"316":{"tf":1.0},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":5,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.0}}}},"s":{"df":10,"docs":{"0":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"298":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"215":{"tf":2.0},"220":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.7320508075688772},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"f":{"1":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"236":{"tf":1.0},"316":{"tf":1.0}}}},"r":{"df":2,"docs":{"313":{"tf":1.0},"316":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":9,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"282":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"317":{"tf":1.0}}}},"w":{"df":1,"docs":{"2":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"314":{"tf":1.0}}}},"g":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"64":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":22,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"316":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"316":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"0":{"tf":2.0},"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"200":{"tf":1.0},"21":{"tf":2.23606797749979},"215":{"tf":2.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"29":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.47213595499958},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"64":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"121":{"tf":3.0},"122":{"tf":3.0},"123":{"tf":3.0},"124":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":1,"docs":{"213":{"tf":1.0}}},"x":{"df":3,"docs":{"19":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"316":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":22,"docs":{"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"305":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"318":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}}}}}}}},"o":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"223":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"286":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"152":{"tf":1.0},"183":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"306":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"189":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":15,"docs":{"107":{"tf":2.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":3,"docs":{"188":{"tf":1.0},"305":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"c":{"c":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"5":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":27,"docs":{"152":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"293":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"299":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"140":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"274":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":7,"docs":{"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"5":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":1,"docs":{"316":{"tf":1.0}}},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":2,"docs":{"187":{"tf":2.0},"190":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"189":{"tf":1.0},"21":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":2,"docs":{"316":{"tf":1.0},"35":{"tf":1.0}}}},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"315":{"tf":2.0},"316":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"189":{"tf":1.0},"316":{"tf":2.0},"54":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"274":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"187":{"tf":1.0}}}},"p":{"df":22,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}}},"n":{"c":{"df":5,"docs":{"19":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}},"df":12,"docs":{"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"316":{"tf":2.449489742783178},"44":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.0},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"270":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":3,"docs":{"274":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"198":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":1.0},"214":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"i":{".":{"df":5,"docs":{"173":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"245":{"tf":1.0},"260":{"tf":1.0}}},"]":{"a":{"b":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"~":{"a":{"b":{"c":{"df":1,"docs":{"237":{"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":{},"l":{"!":{"df":0,"docs":{},"~":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"11":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"70":{"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":4,"docs":{"313":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"3":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"295":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":8,"docs":{"229":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":18,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"315":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.4142135623730951},"201":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"273":{"tf":1.0},"304":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":4.358898943540674},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":5,"docs":{"212":{"tf":4.242640687119285},"229":{"tf":2.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"g":{"df":13,"docs":{"166":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"295":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"r":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"188":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":2.449489742783178},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"t":{"df":6,"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}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"243":{"tf":1.0},"249":{"tf":1.4142135623730951}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951},"243":{"tf":1.0},"251":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"243":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":11,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"151":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"273":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"316":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}},"j":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"k":{"df":3,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"0":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":35,"docs":{"187":{"tf":1.0},"2":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":3.3166247903554},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"306":{"tf":1.0}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"156":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":21,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"45":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":2.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":2.8284271247461903},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"t":{"'":{"df":4,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.0}}},"df":0,"docs":{}}},"f":{"df":1,"docs":{"314":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"189":{"tf":2.6457513110645907},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"107":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"189":{"tf":2.23606797749979},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"df":8,"docs":{"197":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"298":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951}}},"t":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":11,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"281":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":2.23606797749979}}}}}}},"i":{"c":{"df":2,"docs":{"236":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"318":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":2.23606797749979},"187":{"tf":1.0},"190":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":2.23606797749979},"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"u":{"a":{"df":55,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"293":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":19,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":2.0}}}}}},"x":{"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":1,"docs":{"314":{"tf":1.0}}},"d":{"df":1,"docs":{"215":{"tf":1.0}}},"df":3,"docs":{"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":2,"docs":{"0":{"tf":1.0},"21":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"313":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":12,"docs":{"189":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":133,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"241":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":3.872983346207417},"48":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"223":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"219":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"316":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"243":{"tf":1.0},"253":{"tf":1.4142135623730951},"271":{"tf":1.0}}}}}},"df":4,"docs":{"181":{"tf":1.0},"219":{"tf":2.0},"253":{"tf":1.0},"287":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"296":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":2.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"273":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":3.3166247903554},"34":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":3.3166247903554},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"280":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"215":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"v":{"df":2,"docs":{"15":{"tf":1.0},"316":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"173":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"245":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}},"v":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":1,"docs":{"304":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":8,"docs":{"279":{"tf":1.0},"287":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"258":{"tf":1.0},"5":{"tf":1.0}}}}},"w":{"df":8,"docs":{"189":{"tf":2.449489742783178},"242":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":4.0},"317":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":2.449489742783178}}},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"tf":1.0}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"304":{"tf":1.0}}},"df":3,"docs":{"273":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"151":{"tf":1.0},"263":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"25":{"tf":1.0},"316":{"tf":1.7320508075688772}}}}}},"df":84,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":2.0},"215":{"tf":2.449489742783178},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"154":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0}},"e":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"98":{"tf":1.0}}},"h":{"df":4,"docs":{"149":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"316":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"274":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":8,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":16,"docs":{"15":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"p":{"df":1,"docs":{"280":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}}},"r":{"df":8,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"3":{"tf":2.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"314":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"5":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"315":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}},"l":{"df":14,"docs":{"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"213":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"316":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"l":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":2.23606797749979},"202":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":2.0},"5":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":8,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"272":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"4":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"2":{"tf":1.0},"29":{"tf":1.0},"315":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"171":{"tf":1.0},"184":{"tf":2.0},"243":{"tf":1.0},"256":{"tf":2.0},"270":{"tf":1.7320508075688772}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":14,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.4142135623730951},"316":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"292":{"tf":1.0},"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"2":{"tf":1.0},"292":{"tf":2.449489742783178},"293":{"tf":2.8284271247461903},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"299":{"tf":2.0},"300":{"tf":2.0},"301":{"tf":1.4142135623730951},"302":{"tf":2.449489742783178},"303":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":2,"docs":{"101":{"tf":1.0},"170":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"316":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"219":{"tf":1.0},"23":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"318":{"tf":1.0},"6":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"1":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"294":{"tf":1.0},"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"317":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"264":{"tf":1.7320508075688772}}}}},"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":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"21":{"tf":1.0},"273":{"tf":1.0},"316":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"305":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"5":{"tf":2.0},"64":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"316":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"201":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"192":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"299":{"tf":2.0},"317":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"w":{"d":{":":{"?":{"df":0,"docs":{},"}":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"190":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":4,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":2.0}},"r":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}},"df":1,"docs":{"305":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"316":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"317":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"64":{"tf":1.0}}},"m":{"df":1,"docs":{"293":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"180":{"tf":1.0},"203":{"tf":1.0},"252":{"tf":1.0},"317":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"155":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"242":{"tf":1.0},"305":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":5,"docs":{"275":{"tf":1.4142135623730951},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}},"u":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"274":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"71":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"239":{"tf":1.0},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"239":{"tf":1.0},"316":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"173":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"245":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"5":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"p":{"df":19,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"316":{"tf":2.8284271247461903},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":2.23606797749979},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":2.23606797749979},"316":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"274":{"tf":1.0},"285":{"tf":1.7320508075688772},"316":{"tf":2.449489742783178},"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":34,"docs":{"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":3,"docs":{"0":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"9":{"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":5,"docs":{"17":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"273":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"45":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"229":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"316":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"129":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"318":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"g":{"b":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":9,"docs":{"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"197":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"315":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":7,"docs":{"162":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"305":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":2.23606797749979},"47":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":2.449489742783178},"47":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"df":26,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":2.0},"189":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":5,"docs":{"188":{"tf":1.0},"305":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"156":{"tf":1.0},"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"316":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":9,"docs":{"2":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.7320508075688772},"46":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"p":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":2.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"0":{"tf":1.0},"105":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"274":{"tf":1.0},"28":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"171":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"254":{"tf":2.0},"255":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"129":{"tf":1.0},"189":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.4142135623730951},"313":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":2.0},"132":{"tf":3.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"287":{"tf":2.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0},"316":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"140":{"tf":1.0},"189":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"6":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"140":{"tf":2.23606797749979},"316":{"tf":1.0}}}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"|":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}},"}":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"8":{"tf":1.0}}}},"y":{"df":1,"docs":{"4":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"5":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"6":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"296":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"298":{"tf":1.0},"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":16,"docs":{"222":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"144":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"243":{"tf":1.0},"265":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":2.449489742783178},"316":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"191":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"316":{"tf":2.0},"98":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"316":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":2.23606797749979},"316":{"tf":1.0},"64":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"316":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":20,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.0},"278":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"189":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"b":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"274":{"tf":1.0},"279":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"313":{"tf":1.0},"316":{"tf":1.0},"60":{"tf":1.4142135623730951}},"l":{"df":22,"docs":{"189":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.7320508075688772},"214":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"48":{"tf":1.0}}}},"r":{"df":1,"docs":{"15":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"296":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"0":{"tf":1.7320508075688772},"154":{"tf":2.0},"242":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":2.0}},"f":{"d":{"3":{"c":{"3":{"9":{"8":{"d":{"3":{"c":{"df":0,"docs":{},"f":{"4":{"b":{"c":{"b":{"c":{".":{"df":0,"docs":{},"m":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"157":{"tf":1.0},"19":{"tf":1.0},"313":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"303":{"tf":1.0},"306":{"tf":1.7320508075688772},"316":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"149":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"5":{"tf":1.0}}},"k":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"203":{"tf":1.0},"3":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"46":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.7320508075688772},"45":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":10,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":2.23606797749979},"316":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":2.23606797749979},"241":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":1,"docs":{"117":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"243":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"305":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"243":{"tf":1.0},"263":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772}}}},"i":{"df":3,"docs":{"316":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":20,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"188":{"tf":1.0},"301":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"19":{"tf":1.0},"304":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":115,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":1.0},"316":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}},"u":{"df":13,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"5":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":1,"docs":{"316":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}},"df":4,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}},"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":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"293":{"tf":1.0},"315":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":3.4641016151377544},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"5":{"tf":1.0},"60":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"21":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"305":{"tf":1.0}}}},"df":40,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"305":{"tf":3.3166247903554},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":4.898979485566356},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":4.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":14,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.4142135623730951},"273":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"0":{".":{"1":{"0":{".":{"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"df":1,"docs":{"316":{"tf":1.0}}},"7":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"316":{"tf":1.0}}},"5":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"4":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"df":1,"docs":{"316":{"tf":2.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"1":{"3":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.0}}},"2":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"315":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"316":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":2,"docs":{"274":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":3.4641016151377544},"316":{"tf":4.123105625617661},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"198":{"tf":1.0},"206":{"tf":1.7320508075688772},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":13,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":1,"docs":{"314":{"tf":1.0}}}},"m":{"df":5,"docs":{"189":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"31":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"274":{"tf":1.4142135623730951},"293":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":3.605551275463989},"318":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"65":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":9,"docs":{"274":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"307":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"229":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":2.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":10,"docs":{"277":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"159":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"153":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"316":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":1,"docs":{"305":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"278":{"tf":1.0},"280":{"tf":1.0},"5":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"[":{"\"":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"47":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"316":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"316":{"tf":1.4142135623730951}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"[":{"\"":{"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":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"1":{"df":1,"docs":{"242":{"tf":1.0}}},"2":{"df":1,"docs":{"242":{"tf":1.0}}},"3":{"df":1,"docs":{"242":{"tf":1.0}}},"4":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"155":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"4":{".":{"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"=":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"316":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"d":{"=":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"*":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"189":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"189":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"1":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"1":{"2":{"2":{"2":{"7":{"8":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":58,"docs":{"0":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"237":{"tf":1.0}}}},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":89,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"189":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"316":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}},"z":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"305":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"title":{"root":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"246":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"61":{"tf":1.0}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"314":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"243":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"302":{"tf":1.0},"308":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"273":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"105":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"107":{"tf":1.0},"156":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"257":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"303":{"tf":1.0},"309":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"317":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"158":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"197":{"tf":1.0},"272":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"216":{"tf":1.0},"284":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"187":{"tf":1.0},"190":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"272":{"tf":1.0},"300":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"175":{"tf":1.0},"220":{"tf":1.0},"247":{"tf":1.0},"304":{"tf":1.0}}}}},"r":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"217":{"tf":1.0},"283":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"73":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"77":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"278":{"tf":1.0}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"183":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"293":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"249":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"250":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"251":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"252":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":2,"docs":{"155":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"181":{"tf":1.0},"219":{"tf":1.0},"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"163":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"295":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"64":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"194":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"55":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"280":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"244":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"190":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"w":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"275":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"289":{"tf":1.0},"290":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"235":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"301":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":4,"docs":{"111":{"tf":1.0},"162":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"254":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"232":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":30,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"291":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"186":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"200":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/en/writing-plugins.html b/en/writing-plugins.html index 7eb5ad0..3a32e11 100644 --- a/en/writing-plugins.html +++ b/en/writing-plugins.html @@ -185,6 +185,13 @@ to append .xplr to the name to make them distinguishable. Similar t let us know.

    Examples

    Visit Awesome Plugins for xplr plugin examples.

    +

    Also See

    +