From a97eb9255280d76ee1039e1554fd4637958eb002 Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 14:54:27 +0200 Subject: [PATCH 01/12] Avoid bit-loop lowering of unsigned 256-bit div/mod/mulmod. --- crates/integration/src/tests.rs | 67 +++ .../polkavm/context/function/llvm_runtime.rs | 12 + .../llvm-context/src/polkavm/context/mod.rs | 53 ++- crates/stdlib/stdlib.ll | 443 ++++++++++++------ 4 files changed, 432 insertions(+), 143 deletions(-) diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index ef5b337b9..8aa5f0c3c 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -159,6 +159,73 @@ fn ulongrem_fuzz() { run_differential(actions); } +/// Differential fuzz of the unsigned 256-bit `div`/`mod` routing. Non-provable +/// i256 `udiv`/`urem` are rewritten by `narrow_divrem_instructions` into calls +/// to the stdlib `__udivrem256` (128-bit-digit Knuth long division), via the +/// `__udiv256`/`__urem256` wrappers. `__udivrem256` has two paths: `full` +/// (divisor >= 2^128, exercising the qhat estimate and its correction steps) +/// and `twoone` (divisor < 2^128, a single 128-bit digit). A divisor of zero +/// is short-circuited to 0 by the caller's guard per EVM semantics. The +/// keccak-derived stream feeds full-width dividends while alternating the two +/// paths, and the fixed vectors pin the boundary cases the random stream never +/// hits: dividend < / = / > divisor, divisors at 2^128 +/- 1, a power of two, +/// and zero. +#[test] +fn div_mod_fuzz() { + use alloy_primitives::keccak256; + + let one = U256::from(1u64); + let two_128 = one << 128; + + let mut cases: Vec<(U256, U256)> = vec![ + (U256::from(7u64), U256::MAX), // dividend < divisor: quotient 0 + (U256::MAX, U256::MAX), // dividend == divisor: quotient 1, remainder 0 + (U256::MAX, two_128 - one), // divisor just below 2^128: twoone boundary + (U256::MAX, two_128), // divisor 2^128: full path, minimal high digit + (U256::MAX, two_128 + one), // divisor just above 2^128: qhat correction + (U256::MAX, one << 200), // power-of-two divisor in the full range + (U256::MAX, U256::ZERO), // divisor zero: guarded, returns 0 + ]; + + for i in 0u64..256 { + let derive = |tag: &[u8]| -> U256 { + let mut buf = Vec::with_capacity(8 + tag.len()); + buf.extend_from_slice(&i.to_be_bytes()); + buf.extend_from_slice(tag); + U256::from_be_bytes::<32>(keccak256(&buf).0) + }; + let n = derive(b"n"); + let d_raw = derive(b"d"); + // Even i: divisor in [2^128, 2^256), the full multi-digit path. + // Odd i: divisor in [0, 2^128), the twoone single-digit path. + let d = if i % 2 == 0 { + d_raw | two_128 + } else { + d_raw >> 128 + }; + cases.push((n, d)); + } + + let mut actions = instantiate("contracts/DivisionArithmetics.sol", "DivisionArithmetics"); + for (n, d) in cases { + for data in [ + Contract::division_arithmetics_div(n, d).calldata, + Contract::division_arithmetics_mod(n, d).calldata, + ] { + actions.push(Call { + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), + value: 0, + gas_limit: None, + storage_deposit_limit: None, + data, + }); + } + } + + run_differential(actions); +} + #[test] fn bitwise_byte() { let mut actions = instantiate("contracts/Bitwise.sol", "Bitwise"); diff --git a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs index 137835ab0..8508d0030 100644 --- a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs +++ b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs @@ -31,6 +31,18 @@ impl<'ctx> LLVMRuntime<'ctx> { /// The corresponding runtime function name. pub const FUNCTION_SIGNEXTEND: &'static str = "__signextend"; + /// The corresponding runtime function name. + /// It is not a registered runtime function. It must keep external + /// linkage so it survives optimization until `narrow_divrem_instructions` + /// reroutes non-narrowable i256 `udiv` to it, so only its name lives here. + pub const FUNCTION_UDIV256: &'static str = "__udiv256"; + + /// The corresponding runtime function name. + /// It is not a registered runtime function. It must keep external + /// linkage so it survives optimization until `narrow_divrem_instructions` + /// reroutes non-narrowable i256 `urem` to it, so only its name lives here. + pub const FUNCTION_UREM256: &'static str = "__urem256"; + /// A shortcut constructor. pub fn new( llvm: &'ctx inkwell::context::Context, diff --git a/crates/llvm-context/src/polkavm/context/mod.rs b/crates/llvm-context/src/polkavm/context/mod.rs index 84cc6c2dd..f4b891fa7 100644 --- a/crates/llvm-context/src/polkavm/context/mod.rs +++ b/crates/llvm-context/src/polkavm/context/mod.rs @@ -1777,9 +1777,18 @@ impl<'ctx> Context<'ctx> { /// observable across function boundaries after IPSCCP and inlining. fn narrow_divrem_instructions(&self) { let builder = self.llvm.create_builder(); + let udiv256 = self + .module() + .get_function(LLVMRuntime::FUNCTION_UDIV256) + .expect("__udiv256 must be declared in the stdlib module"); + let urem256 = self + .module() + .get_function(LLVMRuntime::FUNCTION_UREM256) + .expect("__urem256 must be declared in the stdlib module"); for function in self.module().get_functions() { let mut to_narrow = Vec::new(); + let mut to_route = Vec::new(); for basic_block in function.get_basic_blocks() { for instruction in basic_block.get_instructions() { @@ -1793,13 +1802,15 @@ impl<'ctx> Context<'ctx> { if !is_divrem { continue; } - if instruction.get_type().into_int_type().get_bit_width() < 256 { + let bit_width = instruction.get_type().into_int_type().get_bit_width(); + if bit_width < 256 { continue; } let lhs = instruction.get_operand(0).and_then(|op| op.value()); let rhs = instruction.get_operand(1).and_then(|op| op.value()); + let mut narrowed = false; if let (Some(lhs), Some(rhs)) = (lhs, rhs) { let lhs_width = Self::provable_bit_width(lhs); let rhs_width = Self::provable_bit_width(rhs); @@ -1819,9 +1830,23 @@ impl<'ctx> Context<'ctx> { !is_signed || narrow_width > max_operand_width; if narrow_width < 256 && signed_sign_bit_safe { to_narrow.push((instruction, narrow_width)); + narrowed = true; } } } + + // An i256 unsigned div/rem we cannot prove narrowable would + // otherwise be expanded by the backend into a ~500-instruction + // bit-at-a-time loop. Route it to the efficient stdlib runtime + // routine (128-bit-digit long division bottoming out at a + // hardware-backed 128/64 divide via `__udivti3`) instead. + if !narrowed && bit_width == 256 { + match instruction.get_opcode() { + InstructionOpcode::UDiv => to_route.push((instruction, udiv256)), + InstructionOpcode::URem => to_route.push((instruction, urem256)), + _ => {} + } + } } } @@ -1884,6 +1909,32 @@ impl<'ctx> Context<'ctx> { instruction.replace_all_uses_with(&wide_instruction); instruction.erase_from_basic_block(); } + + for (instruction, target) in to_route { + let lhs = instruction + .get_operand(0) + .unwrap() + .value() + .unwrap() + .into_int_value(); + let rhs = instruction + .get_operand(1) + .unwrap() + .value() + .unwrap() + .into_int_value(); + + builder.position_before(&instruction); + + let call_value = builder + .build_call(target, &[lhs.into(), rhs.into()], "") + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + let call_instruction = call_value.into_int_value().as_instruction().unwrap(); + instruction.replace_all_uses_with(&call_instruction); + instruction.erase_from_basic_block(); + } } } diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 178c2b345..b8ae9d6fa 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -3,6 +3,8 @@ target datalayout = "e-m:e-p:32:64-p1:32:64-i64:64-i128:128-n32:64-S64" target triple = "riscv64-unknown-none-elf" +declare i128 @llvm.ctlz.i128(i128, i1) + define i256 @__addmod(i256 %arg1, i256 %arg2, i256 %modulo) #0 { entry: %is_zero = icmp eq i256 %modulo, 0 @@ -28,142 +30,299 @@ return: ret i256 %value } -define private i256 @__clz(i256 %v) #0 { +; Efficient unsigned 256-bit division / remainder and 512-by-256 reduction. +; Core divide primitive is a 128/64 udiv (efficient __udivti3 libcall), +; never a raw i256 udiv/urem (LLVM expands those into a ~500-instruction +; bit-at-a-time loop). Algorithm: Knuth Algorithm D. +; Assumption at every entry: divisor / modulus != 0 (guarded by the caller). +; +; (uh:ul) / v -> { quotient, remainder }. Precondition: uh < v, 0 < v < 2^128. +define private { i128, i128 } @__udiv_qrnnd_128(i128 %uh, i128 %ul, i128 %v) #0 { entry: - %vs128 = lshr i256 %v, 128 - %vs128nz = icmp ne i256 %vs128, 0 - %n128 = select i1 %vs128nz, i256 128, i256 256 - %va128 = select i1 %vs128nz, i256 %vs128, i256 %v - %vs64 = lshr i256 %va128, 64 - %vs64nz = icmp ne i256 %vs64, 0 - %clza64 = sub i256 %n128, 64 - %n64 = select i1 %vs64nz, i256 %clza64, i256 %n128 - %va64 = select i1 %vs64nz, i256 %vs64, i256 %va128 - %vs32 = lshr i256 %va64, 32 - %vs32nz = icmp ne i256 %vs32, 0 - %clza32 = sub i256 %n64, 32 - %n32 = select i1 %vs32nz, i256 %clza32, i256 %n64 - %va32 = select i1 %vs32nz, i256 %vs32, i256 %va64 - %vs16 = lshr i256 %va32, 16 - %vs16nz = icmp ne i256 %vs16, 0 - %clza16 = sub i256 %n32, 16 - %n16 = select i1 %vs16nz, i256 %clza16, i256 %n32 - %va16 = select i1 %vs16nz, i256 %vs16, i256 %va32 - %vs8 = lshr i256 %va16, 8 - %vs8nz = icmp ne i256 %vs8, 0 - %clza8 = sub i256 %n16, 8 - %n8 = select i1 %vs8nz, i256 %clza8, i256 %n16 - %va8 = select i1 %vs8nz, i256 %vs8, i256 %va16 - %vs4 = lshr i256 %va8, 4 - %vs4nz = icmp ne i256 %vs4, 0 - %clza4 = sub i256 %n8, 4 - %n4 = select i1 %vs4nz, i256 %clza4, i256 %n8 - %va4 = select i1 %vs4nz, i256 %vs4, i256 %va8 - %vs2 = lshr i256 %va4, 2 - %vs2nz = icmp ne i256 %vs2, 0 - %clza2 = sub i256 %n4, 2 - %n2 = select i1 %vs2nz, i256 %clza2, i256 %n4 - %va2 = select i1 %vs2nz, i256 %vs2, i256 %va4 - %vs1 = lshr i256 %va2, 1 - %vs1nz = icmp ne i256 %vs1, 0 - %clza1 = sub i256 %n2, 2 - %clzax = sub i256 %n2, %va2 - %result = select i1 %vs1nz, i256 %clza1, i256 %clzax - ret i256 %result + %v1 = call i128 @llvm.ctlz.i128(i128 %v, i1 false) + %v2 = shl i128 %v, %v1 + %v3 = lshr i128 %v2, 64 + %v4 = and i128 %v2, 18446744073709551615 + %v5 = zext i128 %uh to i256 + %v6 = zext i128 %ul to i256 + %v7 = shl i256 %v5, 128 + %v8 = or i256 %v7, %v6 + %v9 = zext i128 %v1 to i256 + %v10 = shl i256 %v8, %v9 + %v11 = lshr i256 %v10, 128 + %v12 = trunc i256 %v11 to i128 + %v13 = lshr i256 %v10, 64 + %v14 = and i256 %v13, 18446744073709551615 + %v15 = trunc i256 %v14 to i128 + %v16 = and i256 %v10, 18446744073709551615 + %v17 = trunc i256 %v16 to i128 + %v18 = udiv i128 %v12, %v3 + %v19 = icmp ugt i128 %v18, 18446744073709551615 + %v20 = select i1 %v19, i128 18446744073709551615, i128 %v18 + %v21 = mul i128 %v20, %v3 + %v22 = sub i128 %v12, %v21 + %v23 = zext i128 %v22 to i256 + %v24 = zext i128 %v3 to i256 + %v25 = zext i128 %v15 to i256 + %v26 = mul i128 %v20, %v4 + %v27 = zext i128 %v26 to i256 + %v28 = shl i256 %v23, 64 + %v29 = add i256 %v28, %v25 + %v30 = icmp ugt i256 %v27, %v29 + %v31 = sub i128 %v20, 1 + %v32 = add i256 %v23, %v24 + %v33 = select i1 %v30, i128 %v31, i128 %v20 + %v34 = select i1 %v30, i256 %v32, i256 %v23 + %v35 = mul i128 %v33, %v4 + %v36 = zext i128 %v35 to i256 + %v37 = shl i256 %v34, 64 + %v38 = add i256 %v37, %v25 + %v39 = icmp ugt i256 %v36, %v38 + %v40 = sub i128 %v33, 1 + %v41 = add i256 %v34, %v24 + %v42 = select i1 %v39, i128 %v40, i128 %v33 + %v43 = select i1 %v39, i256 %v41, i256 %v34 + %v44 = shl i128 %v12, 64 + %v45 = add i128 %v44, %v15 + %v46 = mul i128 %v42, %v2 + %v47 = sub i128 %v45, %v46 + %v48 = udiv i128 %v47, %v3 + %v49 = icmp ugt i128 %v48, 18446744073709551615 + %v50 = select i1 %v49, i128 18446744073709551615, i128 %v48 + %v51 = mul i128 %v50, %v3 + %v52 = sub i128 %v47, %v51 + %v53 = zext i128 %v52 to i256 + %v54 = zext i128 %v3 to i256 + %v55 = zext i128 %v17 to i256 + %v56 = mul i128 %v50, %v4 + %v57 = zext i128 %v56 to i256 + %v58 = shl i256 %v53, 64 + %v59 = add i256 %v58, %v55 + %v60 = icmp ugt i256 %v57, %v59 + %v61 = sub i128 %v50, 1 + %v62 = add i256 %v53, %v54 + %v63 = select i1 %v60, i128 %v61, i128 %v50 + %v64 = select i1 %v60, i256 %v62, i256 %v53 + %v65 = mul i128 %v63, %v4 + %v66 = zext i128 %v65 to i256 + %v67 = shl i256 %v64, 64 + %v68 = add i256 %v67, %v55 + %v69 = icmp ugt i256 %v66, %v68 + %v70 = sub i128 %v63, 1 + %v71 = add i256 %v64, %v54 + %v72 = select i1 %v69, i128 %v70, i128 %v63 + %v73 = select i1 %v69, i256 %v71, i256 %v64 + %v74 = zext i128 %v47 to i256 + %v75 = shl i256 %v74, 64 + %v76 = zext i128 %v17 to i256 + %v77 = add i256 %v75, %v76 + %v78 = zext i128 %v72 to i256 + %v79 = zext i128 %v2 to i256 + %v80 = mul i256 %v78, %v79 + %v81 = sub i256 %v77, %v80 + %v82 = lshr i256 %v81, %v9 + %v83 = trunc i256 %v82 to i128 + %v84 = shl i128 %v42, 64 + %v85 = or i128 %v84, %v72 + %v86 = insertvalue { i128, i128 } undef, i128 %v85, 0 + %v87 = insertvalue { i128, i128 } %v86, i128 %v83, 1 + ret { i128, i128 } %v87 } -define private i256 @__ulongrem(i256 %0, i256 %1, i256 %2) #0 { - %.not = icmp ult i256 %1, %2 - br i1 %.not, label %4, label %51 - -4: - %5 = tail call i256 @__clz(i256 %2) - %.not61 = icmp eq i256 %5, 0 - br i1 %.not61, label %13, label %6 - -6: - %7 = shl i256 %2, %5 - %8 = shl i256 %1, %5 - %9 = sub nuw nsw i256 256, %5 - %10 = lshr i256 %0, %9 - %11 = or i256 %10, %8 - %12 = shl i256 %0, %5 - br label %13 - -13: - %.054 = phi i256 [ %7, %6 ], [ %2, %4 ] - %.053 = phi i256 [ %11, %6 ], [ %1, %4 ] - %.052 = phi i256 [ %12, %6 ], [ %0, %4 ] - %14 = lshr i256 %.054, 128 - %15 = udiv i256 %.053, %14 - %16 = urem i256 %.053, %14 - %17 = and i256 %.054, 340282366920938463463374607431768211455 - %18 = lshr i256 %.052, 128 - br label %19 - -19: - %.056 = phi i256 [ %15, %13 ], [ %25, %.critedge ] - %.055 = phi i256 [ %16, %13 ], [ %26, %.critedge ] - %.not62 = icmp ult i256 %.056, 340282366920938463463374607431768211456 - br i1 %.not62, label %20, label %.critedge - -20: - %21 = mul nuw i256 %.056, %17 - %22 = shl nuw i256 %.055, 128 - %23 = or i256 %22, %18 - %24 = icmp ugt i256 %21, %23 - br i1 %24, label %.critedge, label %27 - -.critedge: - %25 = add i256 %.056, -1 - %26 = add i256 %.055, %14 - %.not65 = icmp ult i256 %26, 340282366920938463463374607431768211456 - br i1 %.not65, label %19, label %27 - -27: - %.157 = phi i256 [ %25, %.critedge ], [ %.056, %20 ] - %28 = shl i256 %.053, 128 - %29 = or i256 %18, %28 - %30 = and i256 %.157, 340282366920938463463374607431768211455 - %31 = mul i256 %30, %.054 - %32 = sub i256 %29, %31 - %33 = udiv i256 %32, %14 - %34 = urem i256 %32, %14 - %35 = and i256 %.052, 340282366920938463463374607431768211455 - br label %36 - -36: - %.2 = phi i256 [ %33, %27 ], [ %42, %.critedge1 ] - %.1 = phi i256 [ %34, %27 ], [ %43, %.critedge1 ] - %.not63 = icmp ult i256 %.2, 340282366920938463463374607431768211456 - br i1 %.not63, label %37, label %.critedge1 - -37: - %38 = mul nuw i256 %.2, %17 - %39 = shl i256 %.1, 128 - %40 = or i256 %39, %35 - %41 = icmp ugt i256 %38, %40 - br i1 %41, label %.critedge1, label %44 - -.critedge1: - %42 = add i256 %.2, -1 - %43 = add i256 %.1, %14 - %.not64 = icmp ult i256 %43, 340282366920938463463374607431768211456 - br i1 %.not64, label %36, label %44 - -44: - %.3 = phi i256 [ %42, %.critedge1 ], [ %.2, %37 ] - %45 = shl i256 %32, 128 - %46 = or i256 %45, %35 - %47 = and i256 %.3, 340282366920938463463374607431768211455 - %48 = mul i256 %47, %.054 - %49 = sub i256 %46, %48 - %50 = lshr i256 %49, %5 - br label %51 - -51: - %.0 = phi i256 [ %50, %44 ], [ -1, %3 ] - ret i256 %.0 +; One normalized 128-bit quotient digit: qhat estimate (guarded cap at 2^128-1) +; plus two branchless correction steps. vn is the normalized 256-bit divisor. +define private i128 @__digit_quot(i128 %uhi, i128 %ulo, i256 %vn, i128 %unext) #0 { +entry: + %v1 = lshr i256 %vn, 128 + %v2 = trunc i256 %v1 to i128 + %v3 = trunc i256 %vn to i128 + %v4 = call { i128, i128 } @__udiv_qrnnd_128(i128 %uhi, i128 %ulo, i128 %v2) + %v5 = extractvalue { i128, i128 } %v4, 0 + %v6 = icmp uge i128 %uhi, %v2 + %v7 = select i1 %v6, i128 340282366920938463463374607431768211455, i128 %v5 + %v8 = zext i128 %uhi to i256 + %v9 = zext i128 %ulo to i256 + %v10 = shl i256 %v8, 128 + %v11 = or i256 %v10, %v9 + %v12 = zext i128 %v7 to i256 + %v13 = mul i256 %v12, %v1 + %v14 = sub i256 %v11, %v13 + %v15 = zext i128 %v2 to i256 + %v16 = zext i128 %unext to i384 + %v17 = zext i128 %v7 to i256 + %v18 = zext i128 %v3 to i256 + %v19 = mul i256 %v17, %v18 + %v20 = zext i256 %v19 to i384 + %v21 = zext i256 %v14 to i384 + %v22 = shl i384 %v21, 128 + %v23 = add i384 %v22, %v16 + %v24 = icmp ugt i384 %v20, %v23 + %v25 = sub i128 %v7, 1 + %v26 = add i256 %v14, %v15 + %v27 = select i1 %v24, i128 %v25, i128 %v7 + %v28 = select i1 %v24, i256 %v26, i256 %v14 + %v29 = zext i128 %v27 to i256 + %v30 = zext i128 %v3 to i256 + %v31 = mul i256 %v29, %v30 + %v32 = zext i256 %v31 to i384 + %v33 = zext i256 %v28 to i384 + %v34 = shl i384 %v33, 128 + %v35 = add i384 %v34, %v16 + %v36 = icmp ugt i384 %v32, %v35 + %v37 = sub i128 %v27, 1 + %v38 = add i256 %v28, %v15 + %v39 = select i1 %v36, i128 %v37, i128 %v27 + %v40 = select i1 %v36, i256 %v38, i256 %v28 + ret i128 %v39 +} + +; Full unsigned 256/256 -> { quotient, remainder }. Precondition: v != 0. +define { i256, i256 } @__udivrem256(i256 %u, i256 %v) #0 { +entry: + %v1 = lshr i256 %v, 128 + %v2 = trunc i256 %v1 to i128 + %v3 = trunc i256 %v to i128 + %v4 = lshr i256 %u, 128 + %v5 = trunc i256 %v4 to i128 + %v6 = trunc i256 %u to i128 + %v7 = icmp ne i128 %v2, 0 + br i1 %v7, label %full, label %twoone +twoone: + %v8 = udiv i128 %v5, %v3 + %v9 = mul i128 %v8, %v3 + %v10 = sub i128 %v5, %v9 + %v11 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v10, i128 %v6, i128 %v3) + %v12 = extractvalue { i128, i128 } %v11, 0 + %v13 = extractvalue { i128, i128 } %v11, 1 + %v14 = zext i128 %v8 to i256 + %v15 = shl i256 %v14, 128 + %v16 = zext i128 %v12 to i256 + %v17 = or i256 %v15, %v16 + %v18 = zext i128 %v13 to i256 + %v19 = insertvalue { i256, i256 } undef, i256 %v17, 0 + %v20 = insertvalue { i256, i256 } %v19, i256 %v18, 1 + ret { i256, i256 } %v20 +full: + %v21 = call i128 @llvm.ctlz.i128(i128 %v2, i1 false) + %v22 = zext i128 %v21 to i256 + %v23 = shl i256 %v, %v22 + %v24 = zext i256 %u to i384 + %v25 = zext i128 %v21 to i384 + %v26 = shl i384 %v24, %v25 + %v27 = lshr i384 %v26, 256 + %v28 = trunc i384 %v27 to i128 + %v29 = lshr i384 %v26, 128 + %v30 = trunc i384 %v29 to i256 + %v31 = trunc i256 %v30 to i128 + %v32 = trunc i384 %v26 to i128 + %v33 = call i128 @__digit_quot(i128 %v28, i128 %v31, i256 %v23, i128 %v32) + %v34 = zext i128 %v33 to i256 + %v35 = zext i128 %v28 to i384 + %v36 = zext i128 %v31 to i384 + %v37 = zext i128 %v32 to i384 + %v38 = shl i384 %v35, 256 + %v39 = shl i384 %v36, 128 + %v40 = add i384 %v38, %v39 + %v41 = add i384 %v40, %v37 + %v42 = zext i128 %v33 to i384 + %v43 = zext i256 %v23 to i384 + %v44 = mul i384 %v42, %v43 + %v45 = sub i384 %v41, %v44 + %v46 = lshr i384 %v45, %v25 + %v47 = trunc i384 %v46 to i256 + %v48 = insertvalue { i256, i256 } undef, i256 %v34, 0 + %v49 = insertvalue { i256, i256 } %v48, i256 %v47, 1 + ret { i256, i256 } %v49 +} + +; Remainder of (phi:plo) mod m. Precondition: phi < m, m != 0. +define i256 @__urem512by256(i256 %plo, i256 %phi, i256 %m) #0 { +entry: + %v1 = lshr i256 %m, 128 + %v2 = trunc i256 %v1 to i128 + %v3 = trunc i256 %m to i128 + %v4 = icmp ne i128 %v2, 0 + br i1 %v4, label %full, label %single +single: + %v5 = lshr i256 %phi, 128 + %v6 = trunc i256 %v5 to i128 + %v7 = trunc i256 %phi to i128 + %v8 = lshr i256 %plo, 128 + %v9 = trunc i256 %v8 to i128 + %v10 = trunc i256 %plo to i128 + %v11 = call { i128, i128 } @__udiv_qrnnd_128(i128 0, i128 %v6, i128 %v3) + %v12 = extractvalue { i128, i128 } %v11, 1 + %v13 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v12, i128 %v7, i128 %v3) + %v14 = extractvalue { i128, i128 } %v13, 1 + %v15 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v14, i128 %v9, i128 %v3) + %v16 = extractvalue { i128, i128 } %v15, 1 + %v17 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v16, i128 %v10, i128 %v3) + %v18 = extractvalue { i128, i128 } %v17, 1 + %v19 = zext i128 %v18 to i256 + ret i256 %v19 +full: + %v20 = call i128 @llvm.ctlz.i128(i128 %v2, i1 false) + %v21 = zext i128 %v20 to i256 + %v22 = shl i256 %m, %v21 + %v23 = zext i256 %phi to i512 + %v24 = zext i256 %plo to i512 + %v25 = shl i512 %v23, 256 + %v26 = or i512 %v25, %v24 + %v27 = zext i128 %v20 to i512 + %v28 = shl i512 %v26, %v27 + %v29 = lshr i512 %v28, 384 + %v30 = trunc i512 %v29 to i128 + %v31 = lshr i512 %v28, 256 + %v32 = and i512 %v31, 340282366920938463463374607431768211455 + %v33 = trunc i512 %v32 to i128 + %v34 = lshr i512 %v28, 128 + %v35 = and i512 %v34, 340282366920938463463374607431768211455 + %v36 = trunc i512 %v35 to i128 + %v37 = and i512 %v28, 340282366920938463463374607431768211455 + %v38 = trunc i512 %v37 to i128 + %v39 = zext i256 %v22 to i384 + %v40 = call i128 @__digit_quot(i128 %v30, i128 %v33, i256 %v22, i128 %v36) + %v41 = zext i128 %v30 to i384 + %v42 = zext i128 %v33 to i384 + %v43 = zext i128 %v36 to i384 + %v44 = shl i384 %v41, 256 + %v45 = shl i384 %v42, 128 + %v46 = add i384 %v44, %v45 + %v47 = add i384 %v46, %v43 + %v48 = zext i128 %v40 to i384 + %v49 = mul i384 %v48, %v39 + %v50 = sub i384 %v47, %v49 + %v51 = trunc i384 %v50 to i256 + %v52 = lshr i256 %v51, 128 + %v53 = trunc i256 %v52 to i128 + %v54 = trunc i256 %v51 to i128 + %v55 = call i128 @__digit_quot(i128 %v53, i128 %v54, i256 %v22, i128 %v38) + %v56 = zext i256 %v51 to i384 + %v57 = shl i384 %v56, 128 + %v58 = zext i128 %v38 to i384 + %v59 = add i384 %v57, %v58 + %v60 = zext i128 %v55 to i384 + %v61 = mul i384 %v60, %v39 + %v62 = sub i384 %v59, %v61 + %v63 = trunc i384 %v62 to i256 + %v64 = lshr i256 %v63, %v21 + ret i256 %v64 +} + +; Thin drop-in wrappers. revive emits raw udiv/urem on i256. The +; narrow_divrem_instructions pass rewrites the non-narrowable ones into calls +; to these. Kept external so they survive optimization until that late pass. +; Unused copies are dropped by the final linker --gc-sections. +define i256 @__udiv256(i256 %u, i256 %v) #0 { + %qr = call { i256, i256 } @__udivrem256(i256 %u, i256 %v) + %q = extractvalue { i256, i256 } %qr, 0 + ret i256 %q +} + +define i256 @__urem256(i256 %u, i256 %v) #0 { + %qr = call { i256, i256 } @__udivrem256(i256 %u, i256 %v) + %r = extractvalue { i256, i256 } %qr, 1 + ret i256 %r } define i256 @__mulmod(i256 %arg1, i256 %arg2, i256 %modulo) #0 { @@ -173,22 +332,22 @@ entry: ccret: ret i256 0 entrycont: - %arg1m = urem i256 %arg1, %modulo - %arg2m = urem i256 %arg2, %modulo - %less_then_2_128 = icmp ult i256 %modulo, 340282366920938463463374607431768211456 - br i1 %less_then_2_128, label %fast, label %slow + %arg1m = call i256 @__urem256(i256 %arg1, i256 %modulo) + %arg2m = call i256 @__urem256(i256 %arg2, i256 %modulo) + %less = icmp ult i256 %modulo, 340282366920938463463374607431768211456 + br i1 %less, label %fast, label %slow fast: %prod = mul i256 %arg1m, %arg2m - %prodm = urem i256 %prod, %modulo + %prodm = call i256 @__urem256(i256 %prod, i256 %modulo) ret i256 %prodm slow: - %arg1e = zext i256 %arg1m to i512 - %arg2e = zext i256 %arg2m to i512 - %prode = mul i512 %arg1e, %arg2e + %a1e = zext i256 %arg1m to i512 + %a2e = zext i256 %arg2m to i512 + %prode = mul i512 %a1e, %a2e %prodl = trunc i512 %prode to i256 %prodeh = lshr i512 %prode, 256 %prodh = trunc i512 %prodeh to i256 - %res = call i256 @__ulongrem(i256 %prodl, i256 %prodh, i256 %modulo) + %res = call i256 @__urem512by256(i256 %prodl, i256 %prodh, i256 %modulo) ret i256 %res } From 80c0c02c29c393039f40fd77775148ca78619e03 Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 17:15:53 +0200 Subject: [PATCH 02/12] Avoid bit-loop lowering of signed 256-bit sdiv/smod. --- crates/integration/src/tests.rs | 62 +++++++++++++++++++ .../polkavm/context/function/llvm_runtime.rs | 16 ++++- .../llvm-context/src/polkavm/context/mod.rs | 20 ++++-- crates/stdlib/stdlib.ll | 34 ++++++++++ 4 files changed, 125 insertions(+), 7 deletions(-) diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 8aa5f0c3c..400fb296b 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -226,6 +226,68 @@ fn div_mod_fuzz() { run_differential(actions); } +/// Differential fuzz of the signed 256-bit `sdiv`/`smod` routing. Non-provable +/// i256 `sdiv`/`srem` are rewritten into calls to the stdlib `__sdiv256`/ +/// `__srem256`, which reduce to the unsigned routine via sign-magnitude. Fixed +/// vectors pin the signed edges (`INT_MIN`, the `INT_MIN / -1` overflow, `-1` +/// and `0` divisors, mixed signs, `|n| < |d|`); the keccak stream covers +/// full-width signed operands, alternating the divisor so `|d|` exercises both +/// the `full` and `twoone` paths of the underlying `__udivrem256`. +#[test] +fn sdiv_smod_fuzz() { + use alloy_primitives::keccak256; + + let mut cases: Vec<(I256, I256)> = vec![ + (I256::MIN, I256::MINUS_ONE), // overflow: SDIV = INT_MIN, SMOD = 0 + (I256::MIN, I256::try_from(2).unwrap()), + (I256::MAX, I256::MINUS_ONE), + (I256::try_from(-7).unwrap(), I256::try_from(3).unwrap()), + (I256::try_from(7).unwrap(), I256::try_from(-3).unwrap()), + (I256::try_from(-7).unwrap(), I256::try_from(-3).unwrap()), + (I256::try_from(3).unwrap(), I256::try_from(7).unwrap()), // |n| < |d| + (I256::MIN, I256::MIN), // n == d + (I256::try_from(5).unwrap(), I256::ZERO), // divisor 0: guarded, returns 0 + ]; + + for i in 0u64..256 { + let derive = |tag: &[u8]| -> U256 { + let mut buf = Vec::with_capacity(8 + tag.len()); + buf.extend_from_slice(&i.to_be_bytes()); + buf.extend_from_slice(tag); + U256::from_be_bytes::<32>(keccak256(&buf).0) + }; + let n = I256::from_raw(derive(b"n")); + let d_raw = derive(b"d"); + // Even i: full-width signed divisor (|d| usually >= 2^128, the full + // path). Odd i: small-magnitude divisor (|d| < 2^128, the twoone path). + let d = if i % 2 == 0 { + I256::from_raw(d_raw) + } else { + I256::from_raw(d_raw >> 129) + }; + cases.push((n, d)); + } + + let mut actions = instantiate("contracts/DivisionArithmetics.sol", "DivisionArithmetics"); + for (n, d) in cases { + for data in [ + Contract::division_arithmetics_sdiv(n, d).calldata, + Contract::division_arithmetics_smod(n, d).calldata, + ] { + actions.push(Call { + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), + value: 0, + gas_limit: None, + storage_deposit_limit: None, + data, + }); + } + } + + run_differential(actions); +} + #[test] fn bitwise_byte() { let mut actions = instantiate("contracts/Bitwise.sol", "Bitwise"); diff --git a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs index 8508d0030..7e94a7366 100644 --- a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs +++ b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs @@ -31,18 +31,30 @@ impl<'ctx> LLVMRuntime<'ctx> { /// The corresponding runtime function name. pub const FUNCTION_SIGNEXTEND: &'static str = "__signextend"; - /// The corresponding runtime function name. + /// Name of the unsigned 256-bit division helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external /// linkage so it survives optimization until `narrow_divrem_instructions` /// reroutes non-narrowable i256 `udiv` to it, so only its name lives here. pub const FUNCTION_UDIV256: &'static str = "__udiv256"; - /// The corresponding runtime function name. + /// Name of the unsigned 256-bit remainder helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external /// linkage so it survives optimization until `narrow_divrem_instructions` /// reroutes non-narrowable i256 `urem` to it, so only its name lives here. pub const FUNCTION_UREM256: &'static str = "__urem256"; + /// Name of the signed 256-bit division helper in `stdlib.ll` + /// It is not a registered runtime function. It must keep external + /// linkage so it survives optimization until `narrow_divrem_instructions` + /// reroutes non-narrowable i256 `sdiv` to it, so only its name lives here. + pub const FUNCTION_SDIV256: &'static str = "__sdiv256"; + + /// Name of the signed 256-bit remainder helper in `stdlib.ll` + /// It is not a registered runtime function. It must keep external + /// linkage so it survives optimization until `narrow_divrem_instructions` + /// reroutes non-narrowable i256 `srem` to it, so only its name lives here. + pub const FUNCTION_SREM256: &'static str = "__srem256"; + /// A shortcut constructor. pub fn new( llvm: &'ctx inkwell::context::Context, diff --git a/crates/llvm-context/src/polkavm/context/mod.rs b/crates/llvm-context/src/polkavm/context/mod.rs index f4b891fa7..9c3957849 100644 --- a/crates/llvm-context/src/polkavm/context/mod.rs +++ b/crates/llvm-context/src/polkavm/context/mod.rs @@ -1785,6 +1785,14 @@ impl<'ctx> Context<'ctx> { .module() .get_function(LLVMRuntime::FUNCTION_UREM256) .expect("__urem256 must be declared in the stdlib module"); + let sdiv256 = self + .module() + .get_function(LLVMRuntime::FUNCTION_SDIV256) + .expect("__sdiv256 must be declared in the stdlib module"); + let srem256 = self + .module() + .get_function(LLVMRuntime::FUNCTION_SREM256) + .expect("__srem256 must be declared in the stdlib module"); for function in self.module().get_functions() { let mut to_narrow = Vec::new(); @@ -1835,15 +1843,17 @@ impl<'ctx> Context<'ctx> { } } - // An i256 unsigned div/rem we cannot prove narrowable would - // otherwise be expanded by the backend into a ~500-instruction - // bit-at-a-time loop. Route it to the efficient stdlib runtime - // routine (128-bit-digit long division bottoming out at a - // hardware-backed 128/64 divide via `__udivti3`) instead. + // An i256 div/rem we cannot prove narrowable would otherwise be expanded by + // the backend into a ~500-instruction bit-at-a-time loop. Route it to the + // efficient stdlib routines instead: unsigned ops use 128-bit-digit long + // division bottoming out at a hardware-backed 128/64 divide via `__udivti3`. + // Signed ops wrap those with sign-magnitude. if !narrowed && bit_width == 256 { match instruction.get_opcode() { InstructionOpcode::UDiv => to_route.push((instruction, udiv256)), InstructionOpcode::URem => to_route.push((instruction, urem256)), + InstructionOpcode::SDiv => to_route.push((instruction, sdiv256)), + InstructionOpcode::SRem => to_route.push((instruction, srem256)), _ => {} } } diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index b8ae9d6fa..2958d5eee 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -325,6 +325,40 @@ define i256 @__urem256(i256 %u, i256 %v) #0 { ret i256 %r } +; Signed 256-bit division via sign-magnitude over the unsigned wrapper. The +; caller only reaches this for a safe operand set (the runtime div body guards +; away divisor == 0 and the INT_MIN / -1 overflow pair), so the magnitude +; divide is exact and the sign-adjusted quotient fits in i256. abs(x) is +; (x ^ (x >>s 255)) - (x >>s 255). The sign mask x >>s 255 is 0 or -1. +define i256 @__sdiv256(i256 %a, i256 %b) #0 { + %sign_a = ashr i256 %a, 255 + %sign_b = ashr i256 %b, 255 + %xa = xor i256 %a, %sign_a + %abs_a = sub i256 %xa, %sign_a + %xb = xor i256 %b, %sign_b + %abs_b = sub i256 %xb, %sign_b + %abs_q = call i256 @__udiv256(i256 %abs_a, i256 %abs_b) + %sign_q = xor i256 %sign_a, %sign_b + %xq = xor i256 %abs_q, %sign_q + %q = sub i256 %xq, %sign_q + ret i256 %q +} + +; Signed 256-bit remainder via sign-magnitude. The remainder takes the sign of +; the dividend, matching EVM SMOD. +define i256 @__srem256(i256 %a, i256 %b) #0 { + %sign_a = ashr i256 %a, 255 + %sign_b = ashr i256 %b, 255 + %xa = xor i256 %a, %sign_a + %abs_a = sub i256 %xa, %sign_a + %xb = xor i256 %b, %sign_b + %abs_b = sub i256 %xb, %sign_b + %abs_r = call i256 @__urem256(i256 %abs_a, i256 %abs_b) + %xr = xor i256 %abs_r, %sign_a + %r = sub i256 %xr, %sign_a + ret i256 %r +} + define i256 @__mulmod(i256 %arg1, i256 %arg2, i256 %modulo) #0 { entry: %cccond = icmp eq i256 %modulo, 0 From 46bbe4b66b50869adbfb79e53ce7513b369fcee7 Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 17:21:33 +0200 Subject: [PATCH 03/12] Commit code size files. --- crates/integration/codesize.json | 2 +- crates/integration/codesize_newyork.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index 16d0a6913..1c74cd1fa 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -1,7 +1,7 @@ { "Baseline": 838, "Computation": 2368, - "DivisionArithmetics": 11444, + "DivisionArithmetics": 9367, "ERC20": 18057, "Events": 1614, "FibonacciIterative": 1373, diff --git a/crates/integration/codesize_newyork.json b/crates/integration/codesize_newyork.json index 1301d35d3..2c5472033 100644 --- a/crates/integration/codesize_newyork.json +++ b/crates/integration/codesize_newyork.json @@ -1,10 +1,10 @@ { - "Baseline": 493, - "Computation": 1217, - "DivisionArithmetics": 7370, - "ERC20": 8726, - "Events": 909, - "FibonacciIterative": 969, - "Flipper": 1058, - "SHA1": 6264 + "Baseline": 499, + "Computation": 1223, + "DivisionArithmetics": 7198, + "ERC20": 8747, + "Events": 914, + "FibonacciIterative": 974, + "Flipper": 1064, + "SHA1": 6289 } \ No newline at end of file From 321513ed41747bdbcee6e887ce0a22c121e875fd Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 21:39:16 +0200 Subject: [PATCH 04/12] Keep the 256-bit division helpers outlined under newyork. --- crates/integration/codesize_newyork.json | 16 ++++++++-------- crates/stdlib/stdlib.ll | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/crates/integration/codesize_newyork.json b/crates/integration/codesize_newyork.json index 2c5472033..4197efae5 100644 --- a/crates/integration/codesize_newyork.json +++ b/crates/integration/codesize_newyork.json @@ -1,10 +1,10 @@ { - "Baseline": 499, - "Computation": 1223, - "DivisionArithmetics": 7198, - "ERC20": 8747, - "Events": 914, - "FibonacciIterative": 974, - "Flipper": 1064, - "SHA1": 6289 + "Baseline": 515, + "Computation": 1239, + "DivisionArithmetics": 6728, + "ERC20": 8726, + "Events": 930, + "FibonacciIterative": 990, + "Flipper": 1080, + "SHA1": 6268 } \ No newline at end of file diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 2958d5eee..891eb484f 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -37,7 +37,7 @@ return: ; Assumption at every entry: divisor / modulus != 0 (guarded by the caller). ; ; (uh:ul) / v -> { quotient, remainder }. Precondition: uh < v, 0 < v < 2^128. -define private { i128, i128 } @__udiv_qrnnd_128(i128 %uh, i128 %ul, i128 %v) #0 { +define private { i128, i128 } @__udiv_qrnnd_128(i128 %uh, i128 %ul, i128 %v) noinline #0 { entry: %v1 = call i128 @llvm.ctlz.i128(i128 %v, i1 false) %v2 = shl i128 %v, %v1 @@ -131,7 +131,7 @@ entry: ; One normalized 128-bit quotient digit: qhat estimate (guarded cap at 2^128-1) ; plus two branchless correction steps. vn is the normalized 256-bit divisor. -define private i128 @__digit_quot(i128 %uhi, i128 %ulo, i256 %vn, i128 %unext) #0 { +define private i128 @__digit_quot(i128 %uhi, i128 %ulo, i256 %vn, i128 %unext) noinline #0 { entry: %v1 = lshr i256 %vn, 128 %v2 = trunc i256 %v1 to i128 From 8f74987757db1f5d440704e129c3d70b20e8aab6 Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 21:45:19 +0200 Subject: [PATCH 05/12] Drop the dead small-modulus path from `__urem512by256`. --- crates/stdlib/stdlib.ll | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 891eb484f..a713f1d95 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -235,32 +235,13 @@ full: ret { i256, i256 } %v49 } -; Remainder of (phi:plo) mod m. Precondition: phi < m, m != 0. +; Remainder of (phi:plo) mod m. Preconditions: phi < m, m >= 2^128. The sole +; caller is __mulmod's 512-bit branch, which is only taken for m >= 2^128. +; Smaller moduli take __mulmod's 256-bit fast path through __urem256. define i256 @__urem512by256(i256 %plo, i256 %phi, i256 %m) #0 { entry: %v1 = lshr i256 %m, 128 %v2 = trunc i256 %v1 to i128 - %v3 = trunc i256 %m to i128 - %v4 = icmp ne i128 %v2, 0 - br i1 %v4, label %full, label %single -single: - %v5 = lshr i256 %phi, 128 - %v6 = trunc i256 %v5 to i128 - %v7 = trunc i256 %phi to i128 - %v8 = lshr i256 %plo, 128 - %v9 = trunc i256 %v8 to i128 - %v10 = trunc i256 %plo to i128 - %v11 = call { i128, i128 } @__udiv_qrnnd_128(i128 0, i128 %v6, i128 %v3) - %v12 = extractvalue { i128, i128 } %v11, 1 - %v13 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v12, i128 %v7, i128 %v3) - %v14 = extractvalue { i128, i128 } %v13, 1 - %v15 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v14, i128 %v9, i128 %v3) - %v16 = extractvalue { i128, i128 } %v15, 1 - %v17 = call { i128, i128 } @__udiv_qrnnd_128(i128 %v16, i128 %v10, i128 %v3) - %v18 = extractvalue { i128, i128 } %v17, 1 - %v19 = zext i128 %v18 to i256 - ret i256 %v19 -full: %v20 = call i128 @llvm.ctlz.i128(i128 %v2, i1 false) %v21 = zext i128 %v20 to i256 %v22 = shl i256 %m, %v21 From 8c72ffd46c956227a61f2101540cb9c1a520d7db Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 21:53:41 +0200 Subject: [PATCH 06/12] Early-exit trivial 256-bit divisions (dividend < divisor). --- crates/integration/codesize.json | 2 +- crates/integration/codesize_newyork.json | 2 +- crates/stdlib/stdlib.ll | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index 1c74cd1fa..faeb387a8 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -1,7 +1,7 @@ { "Baseline": 838, "Computation": 2368, - "DivisionArithmetics": 9367, + "DivisionArithmetics": 9484, "ERC20": 18057, "Events": 1614, "FibonacciIterative": 1373, diff --git a/crates/integration/codesize_newyork.json b/crates/integration/codesize_newyork.json index 4197efae5..a9f784d73 100644 --- a/crates/integration/codesize_newyork.json +++ b/crates/integration/codesize_newyork.json @@ -1,7 +1,7 @@ { "Baseline": 515, "Computation": 1239, - "DivisionArithmetics": 6728, + "DivisionArithmetics": 6845, "ERC20": 8726, "Events": 930, "FibonacciIterative": 990, diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index a713f1d95..8b02a5621 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -179,6 +179,16 @@ entry: ; Full unsigned 256/256 -> { quotient, remainder }. Precondition: v != 0. define { i256, i256 } @__udivrem256(i256 %u, i256 %v) #0 { entry: + ; Early exit: u < v yields quotient 0, remainder u. Makes the __mulmod + ; argument pre-reductions nearly free when the arguments are already + ; reduced (< modulus), the common case in modular-arithmetic-heavy code. + %small = icmp ult i256 %u, %v + br i1 %small, label %early, label %split +early: + %e1 = insertvalue { i256, i256 } undef, i256 0, 0 + %e2 = insertvalue { i256, i256 } %e1, i256 %u, 1 + ret { i256, i256 } %e2 +split: %v1 = lshr i256 %v, 128 %v2 = trunc i256 %v1 to i128 %v3 = trunc i256 %v to i128 From 83ddee17349b8360f06bcd06711fbe60cfd29201 Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 21:59:59 +0200 Subject: [PATCH 07/12] Remove dead remainder updates from the division qhat corrections. --- crates/stdlib/stdlib.ll | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 8b02a5621..69ae1d76a 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -79,9 +79,7 @@ entry: %v38 = add i256 %v37, %v25 %v39 = icmp ugt i256 %v36, %v38 %v40 = sub i128 %v33, 1 - %v41 = add i256 %v34, %v24 %v42 = select i1 %v39, i128 %v40, i128 %v33 - %v43 = select i1 %v39, i256 %v41, i256 %v34 %v44 = shl i128 %v12, 64 %v45 = add i128 %v44, %v15 %v46 = mul i128 %v42, %v2 @@ -109,9 +107,7 @@ entry: %v68 = add i256 %v67, %v55 %v69 = icmp ugt i256 %v66, %v68 %v70 = sub i128 %v63, 1 - %v71 = add i256 %v64, %v54 %v72 = select i1 %v69, i128 %v70, i128 %v63 - %v73 = select i1 %v69, i256 %v71, i256 %v64 %v74 = zext i128 %v47 to i256 %v75 = shl i256 %v74, 64 %v76 = zext i128 %v17 to i256 @@ -170,9 +166,7 @@ entry: %v35 = add i384 %v34, %v16 %v36 = icmp ugt i384 %v32, %v35 %v37 = sub i128 %v27, 1 - %v38 = add i256 %v28, %v15 %v39 = select i1 %v36, i128 %v37, i128 %v27 - %v40 = select i1 %v36, i256 %v38, i256 %v28 ret i128 %v39 } From ab21035cb9d77168028b66a9839c2959e9437beb Mon Sep 17 00:00:00 2001 From: elle-j Date: Tue, 14 Jul 2026 22:04:27 +0200 Subject: [PATCH 08/12] Cover negative small-magnitude divisors in sdiv_smod_fuzz test. --- crates/integration/src/tests.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 400fb296b..756890c26 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -259,11 +259,17 @@ fn sdiv_smod_fuzz() { let n = I256::from_raw(derive(b"n")); let d_raw = derive(b"d"); // Even i: full-width signed divisor (|d| usually >= 2^128, the full - // path). Odd i: small-magnitude divisor (|d| < 2^128, the twoone path). + // path). Odd i: small-magnitude divisor (|d| < 2^127, the twoone path), + // sign taken from bit 0 so negative small divisors are covered. let d = if i % 2 == 0 { I256::from_raw(d_raw) } else { - I256::from_raw(d_raw >> 129) + let small = I256::from_raw(d_raw >> 129); + if d_raw.bit(0) { + -small + } else { + small + } }; cases.push((n, d)); } From 1e587e237a1f8353c2cec4ff7b124c1e514810bb Mon Sep 17 00:00:00 2001 From: elle-j Date: Wed, 15 Jul 2026 19:18:00 +0200 Subject: [PATCH 09/12] Add pseudo code to `ll` functions as per review feedback. --- crates/stdlib/stdlib.ll | 194 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 176 insertions(+), 18 deletions(-) diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 69ae1d76a..186d61aeb 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -36,7 +36,42 @@ return: ; bit-at-a-time loop). Algorithm: Knuth Algorithm D. ; Assumption at every entry: divisor / modulus != 0 (guarded by the caller). ; -; (uh:ul) / v -> { quotient, remainder }. Precondition: uh < v, 0 < v < 2^128. +; __udiv_qrnnd_128: divide the 256-bit value (uh:ul) by the 128-bit divisor v. +; Returns { q, r } with q = (uh:ul) / v and r = (uh:ul) mod v, both 128 bits. +; +; Notation: b = 2^64 (this routine's digit base); (x:y) means x*2^w + y where +; w is the bit width of y; / is floor division. +; Preconditions: v != 0 and uh < v, so that q fits in 128 bits. +; +; Knuth TAOCP 4.3.1 Algorithm D / Hacker's Delight 9-4 divlu in base b: a +; 4-digit dividend over a 2-digit divisor, unrolled into two digit steps. +; +; 1. Normalize: s = ctlz(v); vn = v << s (top bit set). Split vn = (vn1:vn0) +; into 64-bit digits. +; 2. un = (uh:ul) << s, exact in 256-bit arithmetic (uh < v keeps the top s +; bits free). Take u2 = un >> 128 (the top two digits as one 128-bit +; value) and the 64-bit digits u1 = (un >> 64) mod b, u0 = un mod b. +; +; First digit step, q1 = (u2:u1) / vn (three digits over two): +; 3. Estimate qhat = min(u2 / vn1, b-1) and rhat = u2 - qhat*vn1 (computed +; with the capped qhat; exact in 128 bits, may exceed b). +; 4. Correct, exactly two branchless steps (Knuth Thm. 4.3.1B: a normalized +; divisor never needs more than two): +; if qhat*vn0 > (rhat:u1) { qhat -= 1; rhat += vn1 } +; if qhat*vn0 > (rhat:u1) { qhat -= 1 } (rhat is dead afterwards) +; The qhat*vn0 products are exact in 128 bits; tests and rhat updates run +; in 256-bit arithmetic, so an oversized rhat correctly fails the test. +; q1 = qhat. +; 5. Partial remainder: u21 = (u2:u1) - q1*vn, computed mod 2^128; exact +; because the true value is a remainder mod vn, hence < 2^128. +; +; Second digit step, q0 = (u21:u0) / vn, identical shape: +; 6. Estimate qhat = min(u21 / vn1, b-1) and rhat = u21 - qhat*vn1. +; 7. The same two branchless corrections, against (rhat:u0). q0 = qhat. +; +; 8. Remainder: r = ((u21:u0) - q0*vn) >> s, computed in 256-bit arithmetic; +; less than v after the shift, so it truncates to 128 bits losslessly. +; 9. Return { (q1:q0), r }. define private { i128, i128 } @__udiv_qrnnd_128(i128 %uh, i128 %ul, i128 %v) noinline #0 { entry: %v1 = call i128 @llvm.ctlz.i128(i128 %v, i1 false) @@ -125,8 +160,33 @@ entry: ret { i128, i128 } %v87 } -; One normalized 128-bit quotient digit: qhat estimate (guarded cap at 2^128-1) -; plus two branchless correction steps. vn is the normalized 256-bit divisor. +; One quotient-digit step of Knuth TAOCP 4.3.1 Algorithm D in base B = 2^128. +; Returns q = (uhi:ulo:unext) / vn, the next 128-bit quotient digit of a +; running division by the normalized 256-bit divisor vn. +; +; Notation: B = 2^128; (x:y) = x*B + y, (x:y:z) = x*B^2 + y*B + z; / is +; floor division. +; Preconditions: vn is normalized (bit 255 set) and (uhi:ulo) < vn, which +; guarantees q <= B-1. +; Result: the exact digit q; quotient only. Callers re-derive the partial +; remainder as (uhi:ulo:unext) - q*vn themselves. +; +; 1. Split vn = (vn1:vn0) into 128-bit digits; vn1 has its top bit set. +; 2. Estimate qhat = min((uhi:ulo) / vn1, B-1): __udiv_qrnnd_128 computes +; (uhi:ulo) / vn1; when uhi >= vn1 (only uhi == vn1 is possible under the +; precondition) that quotient would be >= B, so qhat is forced to B-1. +; Normalization bounds the estimate: qhat - 2 <= q <= qhat. +; 3. rhat = (uhi:ulo) - qhat*vn1, exact in 256-bit arithmetic (below 2^129, +; below 2^130 even after the correction's rhat += vn1; may exceed B when +; qhat was capped). +; 4. Correct, exactly two branchless steps (Knuth Thm. 4.3.1B: at most two +; are ever needed for a normalized divisor): +; if qhat*vn0 > (rhat:unext) { qhat -= 1; rhat += vn1 } +; if qhat*vn0 > (rhat:unext) { qhat -= 1 } (rhat is dead afterwards) +; Each test compares qhat*vn0 (exact 256-bit product, zero-extended) +; against rhat*B + unext, exact in 384-bit arithmetic; an rhat >= B +; correctly fails the test. +; 5. Return qhat. define private i128 @__digit_quot(i128 %uhi, i128 %ulo, i256 %vn, i128 %unext) noinline #0 { entry: %v1 = lshr i256 %vn, 128 @@ -170,7 +230,34 @@ entry: ret i128 %v39 } -; Full unsigned 256/256 -> { quotient, remainder }. Precondition: v != 0. +; Unsigned 256-bit division. Returns { q, r } with q = u / v and r = u mod v. +; +; Notation: B = 2^128; (x:y) = x*B + y; / is floor division. +; Precondition: v != 0. +; +; 1. Early exit: if u < v, return { 0, u }. Besides the trivial win, this +; makes __mulmod's argument pre-reductions nearly free when the +; arguments are already reduced (< modulus), the common case in +; modular-arithmetic-heavy code. +; 2. Split u = (u1:u0) and v = (v1:v0) into 128-bit digits. +; +; "twoone" path, v1 == 0 (v < 2^128): two digits over one, schoolbook: +; 3. High digit: q1 = u1 / v0, with carry k = u1 - q1*v0 = u1 mod v0 +; (so k < v0). +; 4. Low digit: (q0, r) = __udiv_qrnnd_128(k, u0, v0), dividing (k:u0) by +; v0; k < v0 satisfies its precondition. +; 5. Return { (q1:q0), r }. +; +; "full" path, v1 != 0 (v >= 2^128): the quotient fits in a single digit +; because u / v < 2^256 / 2^128 = B, so one Algorithm D digit step suffices: +; 6. Normalize: s = ctlz(v1) (0..127); vn = v << s, exact in 256 bits. +; 7. un = u << s, exact in 384-bit arithmetic; split into digits +; (un2:un1:un0). u < 2^256 <= v*B implies (un2:un1) < vn, +; __digit_quot's precondition. +; 8. q = __digit_quot(un2, un1, vn, un0) = un / vn = u / v. +; 9. r = (un - q*vn) >> s, exact in 384-bit arithmetic; the result is < v, +; so it truncates to 256 bits losslessly. +; 10. Return { q, r }. define { i256, i256 } @__udivrem256(i256 %u, i256 %v) #0 { entry: ; Early exit: u < v yields quotient 0, remainder u. Makes the __mulmod @@ -239,9 +326,33 @@ full: ret { i256, i256 } %v49 } -; Remainder of (phi:plo) mod m. Preconditions: phi < m, m >= 2^128. The sole -; caller is __mulmod's 512-bit branch, which is only taken for m >= 2^128. -; Smaller moduli take __mulmod's 256-bit fast path through __urem256. +; Remainder of the 512-bit value (phi:plo) modulo m. +; Remainder only: quotient digits are computed to reduce, never assembled. +; +; Notation: B = 2^128; (x:y) is concatenation at the operands' named widths; +; / is floor division. +; Preconditions: phi < m and m >= 2^128. There is deliberately NO +; small-modulus path: the sole caller is __mulmod's 512-bit branch, taken +; only for m >= 2^128 (smaller moduli use __mulmod's 256-bit fast path), and +; it always passes phi < m because phi <= (m-1)^2 / 2^256 < m. +; Result: (phi*2^256 + plo) mod m. +; +; Knuth TAOCP 4.3.1 Algorithm D in base B: a 4-digit dividend over a 2-digit +; divisor, unrolled into two digit steps: +; 1. Normalize: m1 = m >> 128 (nonzero since m >= 2^128); s = ctlz(m1); +; mn = m << s, exact in 256 bits. +; 2. pn = (phi:plo) << s, exact in 512-bit arithmetic (phi < m keeps the top +; s bits free). Split into four digits (pn3:pn2:pn1:pn0). +; 3. First digit step: q1 = __digit_quot(pn3, pn2, mn, pn1) +; = (pn3:pn2:pn1) / mn; its precondition (pn3:pn2) < mn follows from +; phi < m. Reduce: r1 = (pn3:pn2:pn1) - q1*mn, exact in 384-bit +; arithmetic; r1 < mn, so it truncates to 256 bits losslessly. +; 4. Second digit step: split r1 = (r1hi:r1lo) into 128-bit digits; +; q0 = __digit_quot(r1hi, r1lo, mn, pn0) = (r1:pn0) / mn (its +; precondition r1 < mn holds by construction). Reduce: +; r2 = (r1:pn0) - q0*mn, exact in 384-bit arithmetic; r2 < mn, truncated +; to 256 bits. +; 5. Return r2 >> s = (phi:plo) mod m. define i256 @__urem512by256(i256 %plo, i256 %phi, i256 %m) #0 { entry: %v1 = lshr i256 %m, 128 @@ -294,27 +405,45 @@ entry: ret i256 %v64 } -; Thin drop-in wrappers. revive emits raw udiv/urem on i256. The -; narrow_divrem_instructions pass rewrites the non-narrowable ones into calls -; to these. Kept external so they survive optimization until that late pass. -; Unused copies are dropped by the final linker --gc-sections. +; Unsigned 256-bit division, quotient only: returns u / v (floor). +; Precondition: v != 0, inherited from the raw i256 udiv this replaces. +; Thin wrapper: the quotient half of __udivrem256. revive emits raw i256 +; udiv/urem; the narrow_divrem_instructions pass rewrites the non-narrowable +; ones into calls to these wrappers. Kept external so they survive +; optimization until that late pass; unused copies are dropped by the final +; linker --gc-sections. define i256 @__udiv256(i256 %u, i256 %v) #0 { %qr = call { i256, i256 } @__udivrem256(i256 %u, i256 %v) %q = extractvalue { i256, i256 } %qr, 0 ret i256 %q } +; Unsigned 256-bit remainder, remainder only: returns u mod v. +; Precondition: v != 0, inherited from the raw i256 urem this replaces. +; Thin wrapper: the remainder half of __udivrem256 (see __udiv256 for why +; these wrappers exist). define i256 @__urem256(i256 %u, i256 %v) #0 { %qr = call { i256, i256 } @__udivrem256(i256 %u, i256 %v) %r = extractvalue { i256, i256 } %qr, 1 ret i256 %r } -; Signed 256-bit division via sign-magnitude over the unsigned wrapper. The -; caller only reaches this for a safe operand set (the runtime div body guards -; away divisor == 0 and the INT_MIN / -1 overflow pair), so the magnitude -; divide is exact and the sign-adjusted quotient fits in i256. abs(x) is -; (x ^ (x >>s 255)) - (x >>s 255). The sign mask x >>s 255 is 0 or -1. +; Signed 256-bit division with EVM SDIV semantics -- the quotient truncates +; toward zero. Sign-magnitude wrapper over the unsigned divider. +; +; Preconditions (established by the guard code emitted around the call): +; b != 0, and not (a == -2^255 and b == -1), the two's complement overflow +; pair. Result: q = a / b truncated toward zero. +; +; 1. Sign masks: sign_a = a >>s 255, sign_b = b >>s 255 (arithmetic shift: +; 0 for a nonnegative operand, all-ones i.e. -1 for a negative one). +; 2. Magnitudes: |x| = (x ^ sign_x) - sign_x, the branchless conditional +; negate (x^0 - 0 = x; x^-1 - (-1) = ~x + 1 = -x). Well defined for +; every input: |-2^255| = 2^255 fits unsigned. +; 3. q_mag = |a| / |b| via __udiv256; flooring the magnitude quotient is +; what makes the signed result truncate toward zero. +; 4. Reapply the sign: sign_q = sign_a ^ sign_b (negative iff exactly one +; operand was); q = (q_mag ^ sign_q) - sign_q. define i256 @__sdiv256(i256 %a, i256 %b) #0 { %sign_a = ashr i256 %a, 255 %sign_b = ashr i256 %b, 255 @@ -329,8 +458,20 @@ define i256 @__sdiv256(i256 %a, i256 %b) #0 { ret i256 %q } -; Signed 256-bit remainder via sign-magnitude. The remainder takes the sign of -; the dividend, matching EVM SMOD. +; Signed 256-bit remainder with EVM SMOD semantics. The remainder takes +; the sign of the dividend, so a == b*(a sdiv b) + (a smod b). +; Sign-magnitude wrapper over the unsigned remainder. +; +; Preconditions (established by the guard code emitted around the call): +; b != 0, and not (a == -2^255 and b == -1) -- the non-UB envelope of the +; raw srem this replaces (the emitted SMOD guard actually swaps a -1 divisor +; for 1, so b == -1 never reaches here). +; Result: r with |r| = |a| mod |b| and sign(r) = sign(a), or r == 0. +; +; 1. Sign masks: sign_a = a >>s 255, sign_b = b >>s 255 (0 or all-ones). +; 2. Magnitudes: |a| = (a ^ sign_a) - sign_a, |b| = (b ^ sign_b) - sign_b. +; 3. r_mag = |a| mod |b| via __urem256. +; 4. Reapply the dividend's sign: r = (r_mag ^ sign_a) - sign_a. define i256 @__srem256(i256 %a, i256 %b) #0 { %sign_a = ashr i256 %a, 255 %sign_b = ashr i256 %b, 255 @@ -344,6 +485,23 @@ define i256 @__srem256(i256 %a, i256 %b) #0 { ret i256 %r } +; EVM MULMOD -- (a * b) mod m with the product taken at full width +; (not mod 2^256), and MULMOD(a, b, 0) = 0. +; +; Preconditions: none (m == 0 is handled here). +; Result: 0 if m == 0, otherwise (a*b) mod m with the exact 512-bit product. +; +; 1. If m == 0, return 0. +; 2. Pre-reduce both arguments: am = a mod m, bm = b mod m via __urem256 +; (its u < v early exit makes this nearly free when the arguments are +; already reduced, the common case). The residue is unchanged and the +; product bound shrinks to (m-1)^2. +; 3. Fast path, m < 2^128: am*bm <= (m-1)^2 < 2^256 is exact in 256-bit +; arithmetic; return (am*bm) mod m via __urem256. +; 4. Slow path, m >= 2^128: p = am*bm computed exactly in 512-bit +; arithmetic; split p = (phi:plo) into 256-bit halves and return +; __urem512by256(plo, phi, m). Its preconditions hold: m >= 2^128 from +; the branch, and phi <= (m-1)^2 / 2^256 < m. define i256 @__mulmod(i256 %arg1, i256 %arg2, i256 %modulo) #0 { entry: %cccond = icmp eq i256 %modulo, 0 From 6b875772299dc3b9177f3261edbc35a576cc6f40 Mon Sep 17 00:00:00 2001 From: elle-j Date: Fri, 17 Jul 2026 17:39:59 +0200 Subject: [PATCH 10/12] Barrett-reduce 256-bit div/mod/mulmod by compile-time constants. Divisions and modular multiplications whose divisor or modulus is a compile-time constant no longer perform any runtime division: they multiply by a precomputed reciprocal with a bounded number of conditional corrections (Barrett reduction). * `lower_wide_division` gains a second rung: an i256 `udiv`/`urem` by a non-power-of-two constant is rewritten into a generated per-constant helper (`constant_division.rs`) with floor(2^256/C) baked in and exactly one correction, ~1.5x faster per call than the routed long-division routine. * Constant-modulus mulmod is rewritten to the new stdlib routine `__mulmod_barrett` (HAC 14.42 at t = 256, two corrections, no operand pre-reduction needed) for any 256-bit non-power-of-two modulus, which covers field primes like P-256 and secp256k1; power-of-two moduli become an inline mul+mask. The rewrite runs BEFORE the main pipeline (`specialize_constant_modulus_mulmod`, behind a mem2reg/sccp/instcombine pre-pass that folds solc's NOT-form constants), because the pipeline inlines `__mulmod` into callers and no rewritable call site survives it; `lower_wide_division` repeats the sweep afterwards for moduli that only become constant during optimization. The hook is skipped at -O0 and for modules without `__mulmod` calls, leaving other contracts untouched. --- crates/integration/codesize_newyork.json | 2 +- .../contracts/DivModMulmodConst.sol | 68 ++ crates/integration/src/cases.rs | 22 + crates/integration/src/tests.rs | 83 +- .../src/polkavm/context/constant_division.rs | 475 +++++++++++ .../polkavm/context/function/llvm_runtime.rs | 19 +- .../llvm-context/src/polkavm/context/mod.rs | 311 ++++++- .../llvm-context/src/polkavm/context/tests.rs | 779 ++++++++++++++++++ crates/stdlib/src/lib.rs | 1 + crates/stdlib/stdlib.ll | 58 +- 10 files changed, 1785 insertions(+), 33 deletions(-) create mode 100644 crates/integration/contracts/DivModMulmodConst.sol create mode 100644 crates/llvm-context/src/polkavm/context/constant_division.rs diff --git a/crates/integration/codesize_newyork.json b/crates/integration/codesize_newyork.json index a9f784d73..a1fe72ddf 100644 --- a/crates/integration/codesize_newyork.json +++ b/crates/integration/codesize_newyork.json @@ -6,5 +6,5 @@ "Events": 930, "FibonacciIterative": 990, "Flipper": 1080, - "SHA1": 6268 + "SHA1": 6264 } \ No newline at end of file diff --git a/crates/integration/contracts/DivModMulmodConst.sol b/crates/integration/contracts/DivModMulmodConst.sol new file mode 100644 index 000000000..751e79645 --- /dev/null +++ b/crates/integration/contracts/DivModMulmodConst.sol @@ -0,0 +1,68 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.0; + +/// Division, remainder, and mulmod by the SAME compile-time constant in one +/// contract, one function per constant magnitude class. Exercises the +/// constant-divisor code paths (LLVM folding, DivRemPairs, Barrett +/// specialization, and runtime routing all branch by constant size) and +/// guards the bug class where a compiler's constant-specialization pass +/// reuses a per-constant helper across optimization phases. +contract DivModMulmodConst { + function mixThree(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / 3; + r = x % 3; + m = mulmod(x, y, 3); + } + + function mixTwoPow64PlusOne(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**64 + 1); + r = x % (2**64 + 1); + m = mulmod(x, y, 2**64 + 1); + } + + function mixTwoPow128MinusOne(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**128 - 1); + r = x % (2**128 - 1); + m = mulmod(x, y, 2**128 - 1); + } + + function mixTwoPow128PlusOne(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**128 + 1); + r = x % (2**128 + 1); + m = mulmod(x, y, 2**128 + 1); + } + + function mixTwoPow200(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**200); + r = x % (2**200); + m = mulmod(x, y, 2**200); + } + + /// 2**255: div/rem fold to shifts and the mulmod modulus is the + /// reciprocal-overflow power of two, taking the inline mask rewrite. + function mixTwoPow255(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**255); + r = x % (2**255); + m = mulmod(x, y, 2**255); + } + + /// 2**255 - 1: 255 bits, the sharp mulmod eligibility boundary — div/rem + /// are Barrett-eligible while mulmod is not Barrett-rewritten. + function mixTwoPow255MinusOne(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**255 - 1); + r = x % (2**255 - 1); + m = mulmod(x, y, 2**255 - 1); + } + + function mixTwoPow255PlusThree(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / (2**255 + 3); + r = x % (2**255 + 3); + m = mulmod(x, y, 2**255 + 3); + } + + function mixMax(uint256 x, uint256 y) public pure returns (uint256 q, uint256 r, uint256 m) { + q = x / type(uint256).max; + r = x % type(uint256).max; + m = mulmod(x, y, type(uint256).max); + } +} diff --git a/crates/integration/src/cases.rs b/crates/integration/src/cases.rs index 74310f7aa..5366306c8 100644 --- a/crates/integration/src/cases.rs +++ b/crates/integration/src/cases.rs @@ -472,6 +472,18 @@ sol!( function modLhsMax(uint256 d) external pure returns (uint256); } + contract DivModMulmodConst { + function mixThree(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow64PlusOne(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow128MinusOne(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow128PlusOne(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow200(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow255(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow255MinusOne(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixTwoPow255PlusThree(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + function mixMax(uint256 x, uint256 y) external pure returns (uint256 q, uint256 r, uint256 m); + } + contract SmodConst { function smodRhsZero(int256 n) external pure returns (int256); function smodRhsOne(int256 n) external pure returns (int256); @@ -494,6 +506,16 @@ sol!( } ); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixThreeCall, const_mix_three, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow64PlusOneCall, const_mix_two_pow64_plus_one, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow128MinusOneCall, const_mix_two_pow128_minus_one, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow128PlusOneCall, const_mix_two_pow128_plus_one, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow200Call, const_mix_two_pow200, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow255Call, const_mix_two_pow255, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow255MinusOneCall, const_mix_two_pow255_minus_one, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixTwoPow255PlusThreeCall, const_mix_two_pow255_plus_three, x: U256, y: U256); +case!("DivModMulmodConst.sol", DivModMulmodConst, mixMaxCall, const_mix_max, x: U256, y: U256); + sol!( contract Send { function transfer_self(uint _amount) public payable; diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 756890c26..266413c8f 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -160,7 +160,7 @@ fn ulongrem_fuzz() { } /// Differential fuzz of the unsigned 256-bit `div`/`mod` routing. Non-provable -/// i256 `udiv`/`urem` are rewritten by `narrow_divrem_instructions` into calls +/// i256 `udiv`/`urem` are rewritten by `lower_wide_division` into calls /// to the stdlib `__udivrem256` (128-bit-digit Knuth long division), via the /// `__udiv256`/`__urem256` wrappers. `__udivrem256` has two paths: `full` /// (divisor >= 2^128, exercising the qhat estimate and its correction steps) @@ -294,6 +294,82 @@ fn sdiv_smod_fuzz() { run_differential(actions); } +/// Differential coverage of division, remainder, and mulmod by the SAME +/// compile-time constant inside one contract, across constant magnitudes the +/// suite otherwise never exercises. Guards the bug class where a constant- +/// specialization pass reuses a per-constant helper across optimization phases +/// (e.g. if `x % C` was to be compiled into an unconditional trap whenever +/// `mulmod(x, y, C)` shares the constant), and pins the sharp eligibility +/// boundaries of the in-tree Barrett rung: 2**255 (power of two: div/rem fold +/// to shifts, mulmod takes the inline mask rewrite) and 2**255 - 1 (255 bits: +/// div/rem Barrett-eligible, mulmod is not Barrett-rewritten). Fixed +/// operands pin 0, 1, C - 1, C, C + 1, and 2^256 - 1 per constant, plus the +/// largest multiple M = C * floor(MAX / C) and M +/- 1 (M deterministically +/// fires the division helpers' single correction); a keccak stream adds +/// full-width pairs. +#[test] +fn div_mod_mulmod_const_mix() { + use alloy_primitives::keccak256; + + /// One helper contract under test: its calldata constructor and the + /// compile-time constant it divides by. + type ConstMixHelper = (fn(U256, U256) -> Contract, U256); + + let one = U256::from(1u64); + let helpers: [ConstMixHelper; 9] = [ + (Contract::const_mix_three, U256::from(3u64)), + (Contract::const_mix_two_pow64_plus_one, (one << 64) + one), + (Contract::const_mix_two_pow128_minus_one, (one << 128) - one), + (Contract::const_mix_two_pow128_plus_one, (one << 128) + one), + (Contract::const_mix_two_pow200, one << 200), + (Contract::const_mix_two_pow255, one << 255), + (Contract::const_mix_two_pow255_minus_one, (one << 255) - one), + ( + Contract::const_mix_two_pow255_plus_three, + (one << 255) + U256::from(3u64), + ), + (Contract::const_mix_max, U256::MAX), + ]; + + let mut actions = instantiate("contracts/DivModMulmodConst.sol", "DivModMulmodConst"); + for (index, (helper, constant)) in helpers.iter().enumerate() { + let largest_multiple = *constant * (U256::MAX / *constant); + let mut operands = vec![ + (U256::ZERO, U256::MAX), + (one, one), + (constant.wrapping_sub(one), U256::MAX), + (*constant, *constant), + (constant.wrapping_add(one), constant.wrapping_sub(one)), + (U256::MAX, U256::MAX), + (largest_multiple, U256::MAX), + (largest_multiple.wrapping_sub(one), U256::MAX), + (largest_multiple.wrapping_add(one), U256::MAX), + ]; + for i in 0u64..8 { + let derive = |tag: &[u8]| -> U256 { + let mut buf = Vec::with_capacity(16 + tag.len()); + buf.extend_from_slice(&(index as u64).to_be_bytes()); + buf.extend_from_slice(&i.to_be_bytes()); + buf.extend_from_slice(tag); + U256::from_be_bytes::<32>(keccak256(&buf).0) + }; + operands.push((derive(b"x"), derive(b"y"))); + } + for (x, y) in operands { + actions.push(Call { + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), + value: 0, + gas_limit: None, + storage_deposit_limit: None, + data: helper(x, y).calldata, + }); + } + } + + run_differential(actions); +} + #[test] fn bitwise_byte() { let mut actions = instantiate("contracts/Bitwise.sol", "Bitwise"); @@ -1166,6 +1242,9 @@ fn unsigned_division_half_const() { (U256::ZERO, U256::MAX), (five, two), (one, U256::ZERO), + // 2^256 - 1 over a small constant drives the Barrett quotient + // estimate to q - 1, firing the helper's single correction. + (U256::MAX, five), ]; for (n, d) in pairs { push_call( @@ -2071,7 +2150,7 @@ fn invalid_opcode_works() { /// holds the only `sdiv i256` we emit, and InstCombine rewrites it to /// `udiv i256` (then to `udiv i64`) once it sees the AND-masks prove the /// operands non-negative. The latent risk: revive's -/// `narrow_divrem_instructions` (crates/llvm-context/src/polkavm/context/mod.rs) +/// `lower_wide_division` (crates/llvm-context/src/polkavm/context/mod.rs) /// would, given a surviving `sdiv i256 (and a, M), (and b, M)`, rewrite it /// to `sext (sdiv i64 (trunc..), (trunc..))`, which flips sign for any /// operand whose bit (n-1) is set. If LLVM ever stops folding sdiv → udiv diff --git a/crates/llvm-context/src/polkavm/context/constant_division.rs b/crates/llvm-context/src/polkavm/context/constant_division.rs new file mode 100644 index 000000000..af464e46e --- /dev/null +++ b/crates/llvm-context/src/polkavm/context/constant_division.rs @@ -0,0 +1,475 @@ +//! Barrett specialization of 256-bit unsigned division and remainder by +//! compile-time constants, and of `__mulmod` calls with compile-time moduli. +//! +//! A Barrett reduction replaces a runtime division by a constant `C` with a +//! multiplication by the precomputed reciprocal `floor(2^k / C)` followed by +//! a shift and at most a bounded number of conditional corrections — no +//! runtime division at all. +//! +//! The div/rem specialization runs as part of [`super::Context::lower_wide_division`], +//! AFTER the full LLVM optimization pipeline, for two reasons: +//! +//! - Constants are fully exposed there: IPSCCP and inlining have already +//! propagated compile-time divisors across function boundaries, so one +//! late sweep sees every eligible site. +//! - Helpers generated here are never touched by the pipeline again, so they +//! can never be calling-convention-promoted (e.g. to `fastcc`) between +//! creation and use. If, for instance, a helper were to be reused across +//! optimization phases, `x % C` could be compiled into a silent trap +//! through exactly that promotion. Creating helpers post-pipeline makes +//! that failure mode structurally impossible. +//! +//! The `__mulmod` specialization instead runs primarily BEFORE the pipeline +//! (from [`super::Context::specialize_constant_modulus_mulmod`], behind a +//! small constant-folding pre-pass): waiting until after the pipeline loses +//! the common single-constant-modulus contract, where the inliner dissolves +//! `__mulmod`'s body into callers and no rewritable call site survives. +//! [`super::Context::lower_wide_division`] repeats the sweep post-pipeline +//! for moduli that only become constant during optimization. Running early +//! is safe because the rewrite targets the pre-existing EXTERNAL +//! `__mulmod_barrett`, which the pipeline can neither +//! calling-convention-promote nor argument-strip; the helper-reuse trap +//! above concerns internal helpers generated by the compiler. + +use inkwell::values::InstructionOpcode; +use num::{BigUint, One, Zero}; + +use crate::polkavm::context::{attribute::Attribute, Context}; + +/// Reserved name prefix shared by every generated Barrett helper function. +/// [`super::Context::lower_wide_division`] skips functions carrying this +/// prefix when walking the module, so freshly generated helper bodies are +/// never themselves candidates for rewriting. +pub const HELPER_PREFIX: &str = "__barrett_"; + +/// Operation infix of the generated unsigned division helpers: their names +/// are [`HELPER_PREFIX`] + this + the divisor in lowercase hexadecimal +/// (no leading zeros, so at most 64 digits for an i256 divisor — +/// deterministic and bounded). +pub const UDIV_HELPER_INFIX: &str = "udiv_256_"; + +/// Operation infix of the generated unsigned remainder helpers: their names +/// are [`HELPER_PREFIX`] + this + the divisor in lowercase hexadecimal +/// (no leading zeros, so at most 64 digits for an i256 divisor — +/// deterministic and bounded). +pub const UREM_HELPER_INFIX: &str = "urem_256_"; + +/// The number of bits in one LLVM `ConstantInt` limb. +const LIMB_BITS: u32 = 64; + +/// How an eligible `__mulmod` call site with a compile-time constant modulus +/// is rewritten. +#[derive(Debug)] +pub enum MulModRewrite { + /// The modulus is a non-power-of-two 256-bit constant: the call is + /// redirected to `__mulmod_barrett`, with the low word of the Barrett + /// reciprocal `floor(2^512 / m) - 2^256` supplied as the fourth argument. + BarrettCall(BigUint), + /// The modulus is an exact power of two `2^k` with `k` in `0..=255` + /// (including the `mu_lo`-overflow case `2^255` and the `m = 1` case): + /// the call is replaced inline by `mul` + `and` with the mask `2^k - 1`. + /// Proof: `a*b ≡ (a*b mod 2^256) (mod 2^k)` since `2^k | 2^256`; `k = 0` + /// gives mask `0 -> 0`, correct mod 1. Two instructions, no helper. + PowerOfTwoMask(u32), +} + +impl<'ctx> Context<'ctx> { + /// Returns the divisor of an i256 `udiv`/`urem` instruction if it is a + /// compile-time constant eligible for Barrett specialization. + /// + /// Eligible means `1 < C < 2^256` and `C` not a power of two. Divisors of + /// 0, 1, and `2^k` are LLVM folding territory: instcombine canonicalizes + /// power-of-two div/rem to shifts at O1+ so such sites normally never + /// reach this pass, but `default` runs no instcombine, making the + /// exclusion mandatory rather than hygiene. Excluded sites fall through + /// to the runtime routing, which is correct at any optimization level. + /// A constant dividend with a runtime divisor also stays routed. + pub(crate) fn barrett_eligible_divisor( + builder: &inkwell::builder::Builder<'ctx>, + instruction: &inkwell::values::InstructionValue<'ctx>, + ) -> Option { + if !matches!( + instruction.get_opcode(), + InstructionOpcode::UDiv | InstructionOpcode::URem + ) { + return None; + } + if !instruction.get_type().is_int_type() { + return None; + } + let divisor = instruction.get_operand(1)?.value()?; + if !divisor.is_int_value() { + return None; + } + let divisor = divisor.into_int_value(); + if !divisor.is_const() { + return None; + } + builder.position_before(instruction); + let divisor = Self::wide_unsigned_constant(builder, divisor)?; + if divisor <= BigUint::one() || divisor.count_ones() == 1 { + return None; + } + Some(divisor) + } + + /// Classifies a call instruction as an eligible constant-modulus + /// `__mulmod` rewrite, or `None` to leave the site untouched. + /// + /// The callee is compared by pointer identity against the `__mulmod` + /// function value (`mulmod_callee`), never by name: post-Oz calls to the + /// private `__mulmod` may carry `fastcc`, and pointer identity is immune + /// to calling-convention, tail-call, and direct-vs-indirect form. A + /// hypothetically cloned or specialized `__mulmod` would be missed, which + /// fails safe (a missed optimization, never wrong code). + /// + /// Moduli with fewer than 256 bits (and runtime moduli) stay on + /// `__mulmod`: `a*b <= (2^256-1)^2 < 2^512` is exactly the HAC 14.42 + /// operand bound at `t = 256`, so only 256-bit moduli admit the shared + /// helper without pre-reducing the multiplicands. + pub(crate) fn mulmod_rewrite( + builder: &inkwell::builder::Builder<'ctx>, + instruction: &inkwell::values::InstructionValue<'ctx>, + mulmod_callee: inkwell::values::PointerValue<'ctx>, + ) -> Option { + if instruction.get_opcode() != InstructionOpcode::Call { + return None; + } + // Three arguments plus the callee, which LLVM stores last. + if instruction.get_num_operands() != 4 { + return None; + } + let callee = instruction.get_operand(3)?.value()?; + if !callee.is_pointer_value() || callee.into_pointer_value() != mulmod_callee { + return None; + } + let modulus = instruction.get_operand(2)?.value()?; + if !modulus.is_int_value() { + return None; + } + let modulus = modulus.into_int_value(); + if !modulus.is_const() { + return None; + } + builder.position_before(instruction); + let modulus = Self::wide_unsigned_constant(builder, modulus)?; + if modulus.count_ones() == 1 { + return Some(MulModRewrite::PowerOfTwoMask(modulus.bits() as u32 - 1)); + } + if modulus.bits() == 256 { + return Some(MulModRewrite::BarrettCall(Self::mulmod_reciprocal_low( + &modulus, + ))); + } + None + } + + /// Computes the Barrett reciprocal `mu = floor(2^256 / C)` for a division + /// helper. + /// + /// `C` not a power of two implies `2^256 = mu*C + e` with `1 <= e <= C-1`. + /// The self-check aborts compilation on violation: a compiler bug here + /// must never become a wrong on-chain result. + pub(crate) fn division_reciprocal(divisor: &BigUint) -> BigUint { + let two_pow_256 = BigUint::one() << 256u32; + let reciprocal = &two_pow_256 / divisor; + assert!( + &reciprocal * divisor <= two_pow_256 && (&reciprocal + 1u32) * divisor > two_pow_256, + "Barrett reciprocal self-check failed for divisor 0x{}", + divisor.to_str_radix(16), + ); + reciprocal + } + + /// Computes the low word `mu_lo = floor(2^512 / m) - 2^256` of the Barrett + /// reciprocal for an eligible `__mulmod` modulus. + /// + /// Range proof: for `2^255 < m <= 2^256 - 1` and `m` not a power of two, + /// `mu >= 2^256 + 1` (since `(2^256-1)(2^256+1) < 2^512`) and + /// `mu < 2^257`, so `mu_lo` lies in `[1, 2^256 - 1]`: it always fits an + /// i256 and is never zero. The self-checks abort compilation on + /// violation. + pub(crate) fn mulmod_reciprocal_low(modulus: &BigUint) -> BigUint { + let two_pow_256 = BigUint::one() << 256u32; + let two_pow_512 = BigUint::one() << 512u32; + let reciprocal = &two_pow_512 / modulus; + assert!( + &reciprocal * modulus <= two_pow_512 && (&reciprocal + 1u32) * modulus > two_pow_512, + "Barrett mulmod reciprocal self-check failed for modulus 0x{}", + modulus.to_str_radix(16), + ); + assert!( + reciprocal > two_pow_256, + "Barrett mulmod reciprocal 0x{} out of range for modulus 0x{}", + reciprocal.to_str_radix(16), + modulus.to_str_radix(16), + ); + let reciprocal_low = reciprocal - two_pow_256; + assert!( + reciprocal_low.bits() <= 256, + "Barrett mulmod reciprocal low word overflows i256 for modulus 0x{}", + modulus.to_str_radix(16), + ); + reciprocal_low + } + + /// Reads an arbitrary-width LLVM unsigned integer constant into a + /// [`BigUint`] without printing IR. + /// + /// For each 64-bit limb the builder is asked for `lshr` on two constant + /// operands, which LLVM's `IRBuilder` constant folder folds to a plain + /// constant without inserting an instruction (the builder must merely be + /// positioned); the limb is then read via `const_truncate` to i64 and + /// `get_zero_extended_constant`. + /// + /// Defensive contract: if a shift result is somehow non-constant, the + /// accidental instruction is erased and `None` is returned — the call + /// site falls back to the runtime routing; this function never + /// miscompiles. The final self-check reconstructs the constant with + /// [`Self::biguint_constant`] and compares interned pointers (LLVM + /// interns `ConstantInt`s per context and type, so equality is complete); + /// this also rejects constant expressions that fold limb-wise but are not + /// plain `ConstantInt`s. + pub(crate) fn wide_unsigned_constant( + builder: &inkwell::builder::Builder<'ctx>, + value: inkwell::values::IntValue<'ctx>, + ) -> Option { + let value_type = value.get_type(); + let i64_type = value_type.get_context().i64_type(); + let limb_count = value_type.get_bit_width().div_ceil(LIMB_BITS); + + let mut result = BigUint::zero(); + for limb_index in (0..limb_count).rev() { + let shift_amount = value_type.const_int((limb_index * LIMB_BITS) as u64, false); + let shifted = builder + .build_right_shift(value, shift_amount, false, "") + .ok()?; + if let Some(accidental_instruction) = shifted.as_instruction() { + accidental_instruction.erase_from_basic_block(); + return None; + } + let limb = shifted + .const_truncate(i64_type) + .get_zero_extended_constant()?; + result = (result << LIMB_BITS) | BigUint::from(limb); + } + + let reconstructed = Self::biguint_constant(value_type, &result); + if reconstructed != value { + return None; + } + Some(result) + } + + /// Materializes a [`BigUint`] as an LLVM constant of the given integer + /// type. + /// + /// # Panics + /// If the value does not fit the type. + pub(crate) fn biguint_constant( + int_type: inkwell::types::IntType<'ctx>, + value: &BigUint, + ) -> inkwell::values::IntValue<'ctx> { + let limb_count = int_type.get_bit_width().div_ceil(LIMB_BITS) as usize; + let mut limbs = value.to_u64_digits(); + assert!( + limbs.len() <= limb_count && value.bits() <= int_type.get_bit_width() as u64, + "constant 0x{} does not fit i{}", + value.to_str_radix(16), + int_type.get_bit_width(), + ); + limbs.resize(limb_count, 0); + int_type.const_int_arbitrary_precision(&limbs) + } + + /// Returns the Barrett helper function for the given operation and + /// divisor, generating it on first use. + /// + /// The helper has internal linkage, `noinline` and `nounwind`, a single + /// entry block, and is built with a dedicated builder so the caller's + /// builder position is never clobbered. Shape (`` is + /// `256 + bits(mu)` rounded up to a multiple of 64 — no-wrap proof: + /// `x*mu < 2^256 * 2^bits(mu) <= 2^wide`; range 320 for large `C` to 512 + /// for `C = 3`): + /// + /// ```llvm + /// define internal i256 @__barrett_udiv_256_(i256 %x) { + /// entry: + /// %xw = zext i256 %x to i + /// %p = mul i %xw, ; no wrap (see width proof) + /// %s = lshr i %p, 256 + /// %qh = trunc i %s to i256 ; qh <= q < 2^256: lossless + /// %qc = mul i256 %qh, ; qh*C <= q*C <= x: no wrap + /// %r0 = sub i256 %x, %qc ; r0 in [0, 2C) + /// %f = icmp uge i256 %r0, ; fires iff qh = q-1 + /// ; udiv: %q1 = add i256 %qh, 1 ; %q = select %f, %q1, %qh ; ret %q + /// ; urem: %r1 = sub i256 %r0, ; %r = select %f, %r1, %r0 ; ret %r + /// } + /// ``` + /// + /// Exactly ONE correction. Proof: with `mu = (2^256 - e)/C`, + /// `1 <= e <= C-1`, and `qh = floor(x*mu/2^256)`: upper — + /// `x*mu/2^256 <= x/C` so `qh <= q`; lower — + /// `x*mu/2^256 = x/C - x*e/(C*2^256)` and `x*e/(C*2^256) < e/C < 1`, so + /// `qh >= q-1`. Hence `qh` is in `{q-1, q}`, `r0` is in `[0, 2C)`, one + /// conditional subtract/increment is necessary and sufficient, and + /// `r0 >= C` iff `qh = q-1`. Tightness: `C = 3` or `5` with + /// `x = 2^256-1` drives `qh = q-1`, so the correction is not dead code. + /// A second correction would be provably dead and is deliberately not + /// emitted (dead margin is untestable code; the emission-time `mu` + /// self-check guards the only way the premise could break). Do not + /// harmonize with `__mulmod_barrett`'s two corrections; these are + /// different theorems. + /// + /// Degenerate case `bits(C) == 256` (`mu = 1`): a compare-and-subtract + /// body is emitted instead — `x < 2^256 < 2C` forces `q` in `{0, 1}`, so + /// `q = zext(icmp uge x, C)` and `r = select(uge, x - C, x)`. Same helper + /// name and type; call sites are agnostic to which body was chosen. + /// + /// # Panics + /// If a function with the helper's reserved name exists with a different + /// type: the prefix is reserved, so a mismatch is a compiler invariant + /// violation. + pub(crate) fn barrett_divrem_helper( + &self, + opcode: InstructionOpcode, + divisor: &BigUint, + ) -> inkwell::values::FunctionValue<'ctx> { + let operation_infix = match opcode { + InstructionOpcode::UDiv => UDIV_HELPER_INFIX, + InstructionOpcode::URem => UREM_HELPER_INFIX, + _ => unreachable!("only udiv/urem sites are Barrett-specialized"), + }; + let name = format!( + "{}{}{}", + HELPER_PREFIX, + operation_infix, + divisor.to_str_radix(16) + ); + + let word_type = self.word_type(); + let helper_type = word_type.fn_type(&[word_type.into()], false); + if let Some(function) = self.module().get_function(&name) { + assert!( + function.get_type() == helper_type, + "the reserved Barrett helper symbol `{name}` has a mismatched type", + ); + return function; + } + + let function = self.module().add_function( + &name, + helper_type, + Some(inkwell::module::Linkage::Internal), + ); + for attribute in [Attribute::NoInline, Attribute::NoUnwind] { + function.add_attribute( + inkwell::attributes::AttributeLoc::Function, + self.llvm.create_enum_attribute(attribute as u32, 0), + ); + } + + let builder = self.llvm.create_builder(); + builder.position_at_end(self.llvm.append_basic_block(function, "entry")); + let dividend = function + .get_first_param() + .expect("the Barrett helper takes the dividend") + .into_int_value(); + let divisor_constant = Self::biguint_constant(word_type, divisor); + + if divisor.bits() as u32 == word_type.get_bit_width() { + let correction_fires = builder + .build_int_compare(inkwell::IntPredicate::UGE, dividend, divisor_constant, "") + .expect("the Barrett helper compare is valid"); + let result = match opcode { + InstructionOpcode::UDiv => builder + .build_int_z_extend(correction_fires, word_type, "") + .expect("the Barrett helper zext is valid") + .into(), + InstructionOpcode::URem => { + let reduced = builder + .build_int_sub(dividend, divisor_constant, "") + .expect("the Barrett helper sub is valid"); + builder + .build_select(correction_fires, reduced, dividend, "") + .expect("the Barrett helper select is valid") + } + _ => unreachable!("only udiv/urem sites are Barrett-specialized"), + }; + builder + .build_return(Some(&result)) + .expect("the Barrett helper return is valid"); + return function; + } + + let reciprocal = Self::division_reciprocal(divisor); + let wide_width = (word_type.get_bit_width() as u64 + reciprocal.bits()) + .div_ceil(LIMB_BITS as u64) as u32 + * LIMB_BITS; + let wide_type = self + .llvm + .custom_width_int_type( + std::num::NonZeroU32::new(wide_width).expect("the wide width is non-zero"), + ) + .expect("the wide width is a valid integer width"); + + let dividend_wide = builder + .build_int_z_extend(dividend, wide_type, "") + .expect("the Barrett helper zext is valid"); + let product = builder + .build_int_mul( + dividend_wide, + Self::biguint_constant(wide_type, &reciprocal), + "", + ) + .expect("the Barrett helper multiply is valid"); + let shifted = builder + .build_right_shift( + product, + wide_type.const_int(word_type.get_bit_width() as u64, false), + false, + "", + ) + .expect("the Barrett helper shift is valid"); + let quotient_estimate = builder + .build_int_truncate(shifted, word_type, "") + .expect("the Barrett helper truncate is valid"); + let quotient_times_divisor = builder + .build_int_mul(quotient_estimate, divisor_constant, "") + .expect("the Barrett helper multiply is valid"); + let remainder_estimate = builder + .build_int_sub(dividend, quotient_times_divisor, "") + .expect("the Barrett helper sub is valid"); + let correction_fires = builder + .build_int_compare( + inkwell::IntPredicate::UGE, + remainder_estimate, + divisor_constant, + "", + ) + .expect("the Barrett helper compare is valid"); + let result = match opcode { + InstructionOpcode::UDiv => { + let corrected = builder + .build_int_add(quotient_estimate, word_type.const_int(1, false), "") + .expect("the Barrett helper add is valid"); + builder + .build_select(correction_fires, corrected, quotient_estimate, "") + .expect("the Barrett helper select is valid") + } + InstructionOpcode::URem => { + let corrected = builder + .build_int_sub(remainder_estimate, divisor_constant, "") + .expect("the Barrett helper sub is valid"); + builder + .build_select(correction_fires, corrected, remainder_estimate, "") + .expect("the Barrett helper select is valid") + } + _ => unreachable!("only udiv/urem sites are Barrett-specialized"), + }; + builder + .build_return(Some(&result)) + .expect("the Barrett helper return is valid"); + function + } +} diff --git a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs index 7e94a7366..6f404350f 100644 --- a/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs +++ b/crates/llvm-context/src/polkavm/context/function/llvm_runtime.rs @@ -33,28 +33,39 @@ impl<'ctx> LLVMRuntime<'ctx> { /// Name of the unsigned 256-bit division helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external - /// linkage so it survives optimization until `narrow_divrem_instructions` + /// linkage so it survives optimization until `lower_wide_division` /// reroutes non-narrowable i256 `udiv` to it, so only its name lives here. pub const FUNCTION_UDIV256: &'static str = "__udiv256"; /// Name of the unsigned 256-bit remainder helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external - /// linkage so it survives optimization until `narrow_divrem_instructions` + /// linkage so it survives optimization until `lower_wide_division` /// reroutes non-narrowable i256 `urem` to it, so only its name lives here. pub const FUNCTION_UREM256: &'static str = "__urem256"; /// Name of the signed 256-bit division helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external - /// linkage so it survives optimization until `narrow_divrem_instructions` + /// linkage so it survives optimization until `lower_wide_division` /// reroutes non-narrowable i256 `sdiv` to it, so only its name lives here. pub const FUNCTION_SDIV256: &'static str = "__sdiv256"; /// Name of the signed 256-bit remainder helper in `stdlib.ll` /// It is not a registered runtime function. It must keep external - /// linkage so it survives optimization until `narrow_divrem_instructions` + /// linkage so it survives optimization until `lower_wide_division` /// reroutes non-narrowable i256 `srem` to it, so only its name lives here. pub const FUNCTION_SREM256: &'static str = "__srem256"; + /// Name of the Barrett constant-modulus mulmod helper in `stdlib.ll` + /// It is not a registered runtime function (registration would flip it to + /// private linkage). It must keep external linkage for both rewrite + /// phases: call sites created by `specialize_constant_modulus_mulmod` + /// BEFORE the optimization pipeline must target a function the pipeline + /// can neither erase, argument-strip, nor calling-convention-promote, + /// and the function must still exist when `lower_wide_division` + /// rewrites late-exposed constant-modulus `__mulmod` call sites AFTER + /// the pipeline. Only its name lives here. + pub const FUNCTION_MULMOD_BARRETT: &'static str = "__mulmod_barrett"; + /// A shortcut constructor. pub fn new( llvm: &'ctx inkwell::context::Context, diff --git a/crates/llvm-context/src/polkavm/context/mod.rs b/crates/llvm-context/src/polkavm/context/mod.rs index 9c3957849..a6f29c900 100644 --- a/crates/llvm-context/src/polkavm/context/mod.rs +++ b/crates/llvm-context/src/polkavm/context/mod.rs @@ -51,6 +51,7 @@ pub mod argument; pub mod attribute; pub mod build; pub mod code_type; +mod constant_division; pub mod debug_info; pub mod function; pub mod global; @@ -348,6 +349,19 @@ impl<'ctx> Context<'ctx> { ) })?; + // Rewrite constant-modulus `__mulmod` calls into Barrett form BEFORE + // the pipeline inlines `__mulmod`'s long-division body into callers, + // after which the mulmod-level structure (and with it the chance to + // skip its operand pre-reductions entirely) is unrecoverable. + self.specialize_constant_modulus_mulmod(&target_machine) + .map_err(|error| { + anyhow::anyhow!( + "The contract `{}` mulmod specialization error: {}", + contract_path, + error + ) + })?; + self.optimizer .run(&target_machine, self.module()) .map_err(|error| { @@ -358,11 +372,12 @@ impl<'ctx> Context<'ctx> { ) })?; - // Narrow large integer div/rem where operands provably fit in a smaller - // type. LLVM's i256 div/rem backend expansion produces enormous basic - // blocks that pallet-revive rejects as `BasicBlockTooLarge`; narrowing - // here keeps the expansion compact. - self.narrow_divrem_instructions(); + // Lower wide integer division that LLVM's i256 div/rem backend would otherwise + // expand into enormous basic blocks that pallet-revive rejects as `BasicBlockTooLarge`: + // - Narrow large integer div/rem where operands provably fit a smaller type. + // - Specialize constant divisors and constant `__mulmod` moduli into Barrett reductions + // - Route the rest to the stdlib runtime routines. + self.lower_wide_division(); self.debug_config .dump_llvm_ir_optimized(contract_path, self.module())?; @@ -1765,8 +1780,13 @@ impl<'ctx> Context<'ctx> { ) } - /// Narrows large integer div/rem instructions whose operands provably fit - /// in a smaller type. + /// Lowers wide integer division after the LLVM optimization pipeline: + /// narrows large div/rem whose operands provably fit a smaller type, + /// specializes constant-divisor div/rem into Barrett reductions, routes + /// the remaining i256 div/rem to the stdlib runtime routines, and + /// repeats the constant-modulus `__mulmod` sweep for moduli that only + /// became constant during the pipeline (the primary `__mulmod` rewrite + /// runs beforehand in [`Self::specialize_constant_modulus_mulmod`]). /// /// LLVM's i256 div/rem backend expansion produces enormous basic blocks /// that pallet-revive rejects as `BasicBlockTooLarge`. LLVM's own @@ -1774,28 +1794,43 @@ impl<'ctx> Context<'ctx> { /// functions after inlining. This runs as a safety net after the full /// LLVM optimization pipeline so we operate on the final form where the /// proof sources we accept (LLVM constants, `and` masks, `zext`) are - /// observable across function boundaries after IPSCCP and inlining. - fn narrow_divrem_instructions(&self) { + /// observable across function boundaries after IPSCCP and inlining. The + /// Barrett helpers are generated here, after the pipeline, so they are + /// never calling-convention-promoted between creation and use (see + /// [`constant_division`] for the full argument). + fn lower_wide_division(&self) { let builder = self.llvm.create_builder(); - let udiv256 = self - .module() - .get_function(LLVMRuntime::FUNCTION_UDIV256) - .expect("__udiv256 must be declared in the stdlib module"); - let urem256 = self - .module() - .get_function(LLVMRuntime::FUNCTION_UREM256) - .expect("__urem256 must be declared in the stdlib module"); - let sdiv256 = self - .module() - .get_function(LLVMRuntime::FUNCTION_SDIV256) - .expect("__sdiv256 must be declared in the stdlib module"); - let srem256 = self - .module() - .get_function(LLVMRuntime::FUNCTION_SREM256) - .expect("__srem256 must be declared in the stdlib module"); + let stdlib_function = |name: &str| { + self.module() + .get_function(name) + .unwrap_or_else(|| panic!("{name} must be declared in the stdlib module")) + }; + let udiv256 = stdlib_function(LLVMRuntime::FUNCTION_UDIV256); + let urem256 = stdlib_function(LLVMRuntime::FUNCTION_UREM256); + let sdiv256 = stdlib_function(LLVMRuntime::FUNCTION_SDIV256); + let srem256 = stdlib_function(LLVMRuntime::FUNCTION_SREM256); + + // Catch `__mulmod` call sites whose modulus only became a constant + // during the main pipeline; sites already constant beforehand were + // rewritten by `specialize_constant_modulus_mulmod`. + self.rewrite_constant_modulus_mulmod_calls(); for function in self.module().get_functions() { + // Generated Barrett helpers are never candidates for rewriting: + // their bodies contain no eligible operations, and skipping them + // removes any reliance on the module function list tolerating + // appends during iteration (defense in depth). + if function + .get_name() + .to_string_lossy() + .starts_with(constant_division::HELPER_PREFIX) + { + continue; + } + let mut to_narrow = Vec::new(); + let mut to_barrett_divrem: Vec<(inkwell::values::InstructionValue, num::BigUint)> = + Vec::new(); let mut to_route = Vec::new(); for basic_block in function.get_basic_blocks() { @@ -1843,6 +1878,19 @@ impl<'ctx> Context<'ctx> { } } + // Second rung: an i256 udiv/urem by a compile-time constant that cannot + // be narrowed is rewritten into a call to a generated Barrett helper + // (multiplication by a precomputed reciprocal), measurably ~1.5x faster + // per call than the routed long-division runtime routine. + if !narrowed && bit_width == 256 { + if let Some(divisor) = + Self::barrett_eligible_divisor(&builder, &instruction) + { + to_barrett_divrem.push((instruction, divisor)); + continue; + } + } + // An i256 div/rem we cannot prove narrowable would otherwise be expanded by // the backend into a ~500-instruction bit-at-a-time loop. Route it to the // efficient stdlib routines instead: unsigned ops use 128-bit-digit long @@ -1920,6 +1968,32 @@ impl<'ctx> Context<'ctx> { instruction.erase_from_basic_block(); } + for (instruction, divisor) in to_barrett_divrem { + let dividend = instruction + .get_operand(0) + .unwrap() + .value() + .unwrap() + .into_int_value(); + let helper = self.barrett_divrem_helper(instruction.get_opcode(), &divisor); + + builder.position_before(&instruction); + + let call_site = builder.build_call(helper, &[dividend.into()], "").unwrap(); + // One-line insurance: a freshly generated helper is default-CC + // by construction, but a helper reused by name must never be + // called with a mismatched convention. + call_site.set_call_convention(helper.get_call_conventions()); + let call_instruction = call_site + .try_as_basic_value() + .unwrap_basic() + .into_int_value() + .as_instruction() + .unwrap(); + instruction.replace_all_uses_with(&call_instruction); + instruction.erase_from_basic_block(); + } + for (instruction, target) in to_route { let lhs = instruction .get_operand(0) @@ -1948,6 +2022,193 @@ impl<'ctx> Context<'ctx> { } } + /// Rewrites `__mulmod` calls with a compile-time-constant modulus into + /// Barrett form ahead of the main optimization pipeline. + /// + /// Constant moduli usually reach `__mulmod` in composed form (solc's code + /// generator emits large literals as `not`/`shl`/`sub` expressions and + /// may hold them in stack variables), so a cheap constant-folding + /// pre-pass runs first to expose them as plain constants. The rewrite + /// must happen before the main pipeline: once the inliner dissolves + /// `__mulmod`'s body into callers, an eligible site decays into two + /// operand pre-reductions plus a 512-by-256 long division, and the + /// Barrett form — which needs no pre-reduction at all, since its operand + /// bound `a*b < 2^512` holds for arbitrary 256-bit factors — is no + /// longer recoverable. Sites whose modulus only becomes constant during + /// the main pipeline are still caught by the sweep in + /// [`Self::lower_wide_division`]. + /// + /// The rewritten calls target the external `__mulmod_barrett`, which the + /// pipeline can neither calling-convention-promote nor argument-strip, + /// so running before optimization is safe (the post-pipeline `fastcc` + /// hazard documented in [`constant_division`] concerns helpers generated after the + /// pipeline, not pre-existing external stdlib routines). + /// + /// Skipped entirely when the module contains no `__mulmod` call or at + /// `-O0` (the pre-pass would violate the no-optimization contract), so + /// the compile-time cost and any phase-ordering influence are confined + /// to modules that actually use `mulmod`. + fn specialize_constant_modulus_mulmod( + &self, + target_machine: &TargetMachine, + ) -> anyhow::Result<()> { + if self.optimizer.settings().level_middle_end == inkwell::OptimizationLevel::None { + return Ok(()); + } + let has_mulmod_calls = self + .module() + .get_function(LLVMRuntime::FUNCTION_MULMOD) + .map(|function| { + function + .as_global_value() + .as_pointer_value() + .get_first_use() + .is_some() + }) + .unwrap_or(false); + if !has_mulmod_calls { + return Ok(()); + } + target_machine + .run_optimization_passes(self.module(), Self::MULMOD_CONSTANT_FOLD_PASSES) + .map_err(|error| { + anyhow::anyhow!("the mulmod constant-fold pre-pass failed: {error}") + })?; + self.rewrite_constant_modulus_mulmod_calls(); + Ok(()) + } + + /// The constant-folding pre-pass run by + /// [`Self::specialize_constant_modulus_mulmod`]: `mem2reg` surfaces + /// moduli held in stack slots, `sccp` folds constants across the + /// branches solc emits around composed literals, and `instcombine` + /// canonicalizes the remainder into plain `ConstantInt` operands. + /// A single `instcombine` iteration suffices for that job, so the + /// fixpoint verification a standalone `instcombine` performs by default + /// is disabled (the main pipeline reruns `instcombine` to fixpoint + /// afterwards anyway). + const MULMOD_CONSTANT_FOLD_PASSES: &'static str = + "function(mem2reg,sccp,instcombine)"; + + /// Rewrites every eligible constant-modulus `__mulmod` call site in the + /// module: 256-bit moduli into `__mulmod_barrett` calls carrying the + /// precomputed reciprocal, power-of-two moduli into inline `mul` + mask. + /// + /// Runs both before the main optimization pipeline (from + /// [`Self::specialize_constant_modulus_mulmod`]) and after it (from + /// [`Self::lower_wide_division`], for moduli the pipeline only then + /// exposed as constants); the classification is idempotent, and sites + /// rewritten by the first sweep no longer call `__mulmod`, so the second + /// sweep cannot see them again. + fn rewrite_constant_modulus_mulmod_calls(&self) { + // `__mulmod` is a registered runtime function with private linkage: + // it always exists at the pre-pipeline sweep, but the pipeline erases + // it from modules that never call mulmod, so the post-pipeline sweep + // must tolerate its absence; without the function there can be no + // eligible call sites. + let Some(mulmod_callee) = self + .module() + .get_function(LLVMRuntime::FUNCTION_MULMOD) + .map(|function| function.as_global_value().as_pointer_value()) + else { + return; + }; + let mulmod_barrett = self + .module() + .get_function(LLVMRuntime::FUNCTION_MULMOD_BARRETT) + .unwrap_or_else(|| { + panic!( + "{} must be declared in the stdlib module", + LLVMRuntime::FUNCTION_MULMOD_BARRETT + ) + }); + let builder = self.llvm.create_builder(); + + for function in self.module().get_functions() { + let mut to_mulmod_rewrite: Vec<( + inkwell::values::InstructionValue, + constant_division::MulModRewrite, + )> = Vec::new(); + + for basic_block in function.get_basic_blocks() { + for instruction in basic_block.get_instructions() { + if instruction.get_opcode() != InstructionOpcode::Call { + continue; + } + if let Some(rewrite) = + Self::mulmod_rewrite(&builder, &instruction, mulmod_callee) + { + to_mulmod_rewrite.push((instruction, rewrite)); + } + } + } + + for (instruction, rewrite) in to_mulmod_rewrite { + let call_operand = |index: u32| { + instruction + .get_operand(index) + .unwrap() + .value() + .unwrap() + .into_int_value() + }; + let factor_one = call_operand(0); + let factor_two = call_operand(1); + let modulus = call_operand(2); + + builder.position_before(&instruction); + + match rewrite { + constant_division::MulModRewrite::BarrettCall(reciprocal_low) => { + let reciprocal_low_constant = + Self::biguint_constant(self.word_type(), &reciprocal_low); + let call_site = builder + .build_call( + mulmod_barrett, + &[ + factor_one.into(), + factor_two.into(), + modulus.into(), + reciprocal_low_constant.into(), + ], + "", + ) + .unwrap(); + // The callee is external with default CC; keep the + // fresh call site in lockstep regardless. + call_site.set_call_convention(mulmod_barrett.get_call_conventions()); + let call_instruction = call_site + .try_as_basic_value() + .unwrap_basic() + .into_int_value() + .as_instruction() + .unwrap(); + instruction.replace_all_uses_with(&call_instruction); + instruction.erase_from_basic_block(); + } + constant_division::MulModRewrite::PowerOfTwoMask(exponent) => { + let mask = (num::BigUint::from(1u32) << exponent) - 1u32; + let mask_constant = Self::biguint_constant(self.word_type(), &mask); + let product = builder.build_int_mul(factor_one, factor_two, "").unwrap(); + let masked = builder.build_and(product, mask_constant, "").unwrap(); + match masked.as_instruction() { + Some(masked_instruction) => { + instruction.replace_all_uses_with(&masked_instruction) + } + // Both factors were constants and the rewrite + // folded away entirely; replace the call's uses + // with the folded constant directly. + None => inkwell::values::IntValue::try_from(instruction) + .expect("the __mulmod call returns an integer") + .replace_all_uses_with(masked), + } + instruction.erase_from_basic_block(); + } + } + } + } + } + /// Returns the provable bit width of a value, if it can be determined. /// /// Checks for: diff --git a/crates/llvm-context/src/polkavm/context/tests.rs b/crates/llvm-context/src/polkavm/context/tests.rs index ebb6b0e09..1bc18848a 100644 --- a/crates/llvm-context/src/polkavm/context/tests.rs +++ b/crates/llvm-context/src/polkavm/context/tests.rs @@ -1,7 +1,11 @@ //! The LLVM IR generator context tests. +use inkwell::values::InstructionOpcode; +use num::BigUint; + use crate::optimizer::settings::Settings as OptimizerSettings; use crate::polkavm::context::attribute::Attribute; +use crate::polkavm::context::constant_division; use crate::polkavm::context::Context; use crate::PolkaVMTarget; @@ -150,3 +154,778 @@ pub fn check_attribute_min_size_mode_z() { .attributes(inkwell::attributes::AttributeLoc::Function) .contains(&llvm.create_enum_attribute(Attribute::MinSize as u32, 0))); } + +/// Adds an `i256 name(i256 x parameter_count)` function with an empty entry +/// block to the dummy context's module. +fn add_word_function<'ctx>( + llvm: &'ctx inkwell::context::Context, + context: &Context<'ctx>, + name: &str, + parameter_count: usize, +) -> inkwell::values::FunctionValue<'ctx> { + let word_type = context.word_type(); + let parameter_types = vec![word_type.into(); parameter_count]; + let function = + context + .module() + .add_function(name, word_type.fn_type(¶meter_types, false), None); + llvm.append_basic_block(function, "entry"); + function +} + +/// Counts the call instructions in `function` whose callee is `callee`, +/// compared by pointer identity. +fn count_calls_to<'ctx>( + function: inkwell::values::FunctionValue<'ctx>, + callee: inkwell::values::FunctionValue<'ctx>, +) -> usize { + let callee_pointer = callee.as_global_value().as_pointer_value(); + let mut count = 0; + for basic_block in function.get_basic_blocks() { + for instruction in basic_block.get_instructions() { + if instruction.get_opcode() != InstructionOpcode::Call { + continue; + } + let last_operand = instruction + .get_operand(instruction.get_num_operands() - 1) + .and_then(|operand| operand.value()); + if last_operand.is_some_and(|operand| { + operand.is_pointer_value() && operand.into_pointer_value() == callee_pointer + }) { + count += 1; + } + } + } + count +} + +/// Counts the instructions in `function` with the given opcode; when +/// `bit_width` is given, only instructions of that integer width count. +fn count_opcodes( + function: inkwell::values::FunctionValue, + opcode: InstructionOpcode, + bit_width: Option, +) -> usize { + let mut count = 0; + for basic_block in function.get_basic_blocks() { + for instruction in basic_block.get_instructions() { + if instruction.get_opcode() != opcode { + continue; + } + if let Some(bit_width) = bit_width { + if !instruction.get_type().is_int_type() + || instruction.get_type().into_int_type().get_bit_width() != bit_width + { + continue; + } + } + count += 1; + } + } + count +} + +/// Counts the module functions whose name starts with the reserved Barrett +/// helper prefix. +fn count_barrett_helpers(context: &Context) -> usize { + context + .module() + .get_functions() + .filter(|function| { + function + .get_name() + .to_string_lossy() + .starts_with(constant_division::HELPER_PREFIX) + }) + .count() +} + +/// The secp256k1 field prime: a 256-bit constant with all limbs populated. +fn secp256k1_prime() -> BigUint { + BigUint::parse_bytes( + b"fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f", + 16, + ) + .expect("the secp256k1 prime is valid hexadecimal") +} + +#[test] +fn barrett_rewrites_constant_unsigned_division() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + // 2^128 + 1: not narrowable, not a power of two, takes the multiply path. + let divisor = (BigUint::from(1u32) << 128u32) + 1u32; + let function = add_word_function(&llvm, &context, "test", 1); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let dividend = function.get_first_param().unwrap().into_int_value(); + let quotient = builder + .build_int_unsigned_div(dividend, Context::biguint_constant(word_type, &divisor), "") + .unwrap(); + builder.build_return(Some("ient)).unwrap(); + + context.lower_wide_division(); + + let helper_name = format!( + "{}{}{}", + constant_division::HELPER_PREFIX, + constant_division::UDIV_HELPER_INFIX, + divisor.to_str_radix(16) + ); + let helper = context + .module() + .get_function(&helper_name) + .expect("the Barrett division helper must have been generated"); + assert_eq!(helper.get_linkage(), inkwell::module::Linkage::Internal); + assert!(helper + .attributes(inkwell::attributes::AttributeLoc::Function) + .contains(&llvm.create_enum_attribute(Attribute::NoInline as u32, 0))); + assert_eq!(count_calls_to(function, helper), 1); + assert_eq!(count_opcodes(function, InstructionOpcode::UDiv, None), 0); + context.verify().unwrap(); +} + +#[test] +fn barrett_rewrites_constant_unsigned_remainder() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + let divisor = secp256k1_prime(); + let function = add_word_function(&llvm, &context, "test", 1); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let dividend = function.get_first_param().unwrap().into_int_value(); + let remainder = builder + .build_int_unsigned_rem(dividend, Context::biguint_constant(word_type, &divisor), "") + .unwrap(); + builder.build_return(Some(&remainder)).unwrap(); + + context.lower_wide_division(); + + let helper_name = format!( + "{}{}{}", + constant_division::HELPER_PREFIX, + constant_division::UREM_HELPER_INFIX, + divisor.to_str_radix(16) + ); + let helper = context + .module() + .get_function(&helper_name) + .expect("the Barrett remainder helper must have been generated"); + assert_eq!(helper.get_linkage(), inkwell::module::Linkage::Internal); + assert!(helper + .attributes(inkwell::attributes::AttributeLoc::Function) + .contains(&llvm.create_enum_attribute(Attribute::NoInline as u32, 0))); + assert_eq!(count_calls_to(function, helper), 1); + assert_eq!(count_opcodes(function, InstructionOpcode::URem, None), 0); + context.verify().unwrap(); +} + +#[test] +fn barrett_helper_deduplicated_across_functions() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + let builder = llvm.create_builder(); + + let divisor = (BigUint::from(1u32) << 192u32) + 9u32; + let mut functions = Vec::new(); + for name in ["test_one", "test_two"] { + let function = add_word_function(&llvm, &context, name, 1); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let dividend = function.get_first_param().unwrap().into_int_value(); + let quotient = builder + .build_int_unsigned_div(dividend, Context::biguint_constant(word_type, &divisor), "") + .unwrap(); + builder.build_return(Some("ient)).unwrap(); + functions.push(function); + } + + context.lower_wide_division(); + + assert_eq!(count_barrett_helpers(&context), 1); + let helper_name = format!( + "{}{}{}", + constant_division::HELPER_PREFIX, + constant_division::UDIV_HELPER_INFIX, + divisor.to_str_radix(16) + ); + let helper = context.module().get_function(&helper_name).unwrap(); + for function in functions { + assert_eq!(count_calls_to(function, helper), 1); + } + context.verify().unwrap(); +} + +#[test] +fn barrett_skips_powers_of_two_and_trivial_divisors() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + let builder = llvm.create_builder(); + + let divisors = [ + BigUint::from(0u32), + BigUint::from(1u32), + BigUint::from(1u32) << 200u32, + ]; + let mut functions = Vec::new(); + for (index, divisor) in divisors.iter().enumerate() { + let function = add_word_function(&llvm, &context, &format!("test_{index}"), 1); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let dividend = function.get_first_param().unwrap().into_int_value(); + let quotient = builder + .build_int_unsigned_div(dividend, Context::biguint_constant(word_type, divisor), "") + .unwrap(); + builder.build_return(Some("ient)).unwrap(); + functions.push(function); + } + + context.lower_wide_division(); + + assert_eq!(count_barrett_helpers(&context), 0); + let udiv256 = context.module().get_function("__udiv256").unwrap(); + for function in functions { + assert_eq!(count_calls_to(function, udiv256), 1); + } + context.verify().unwrap(); +} + +#[test] +fn barrett_respects_narrowing_precedence() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + let function = add_word_function(&llvm, &context, "test", 1); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let parameter = function.get_first_param().unwrap().into_int_value(); + let masked = builder + .build_and(parameter, word_type.const_int(u16::MAX as u64, false), "") + .unwrap(); + let quotient = builder + .build_int_unsigned_div(masked, word_type.const_int(5, false), "") + .unwrap(); + builder.build_return(Some("ient)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_barrett_helpers(&context), 0); + assert_eq!( + count_opcodes(function, InstructionOpcode::UDiv, Some(256)), + 0 + ); + assert_eq!( + count_opcodes(function, InstructionOpcode::UDiv, Some(16)), + 1 + ); + context.verify().unwrap(); +} + +#[test] +fn barrett_leaves_signed_constant_division_routed() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + let builder = llvm.create_builder(); + + // A 256-bit magnitude defeats narrowing, keeping the sites on the ladder's + // routing rung. + let divisor = Context::biguint_constant(word_type, &secp256k1_prime()); + + let division = add_word_function(&llvm, &context, "test_sdiv", 1); + builder.position_at_end(division.get_first_basic_block().unwrap()); + let dividend = division.get_first_param().unwrap().into_int_value(); + let quotient = builder.build_int_signed_div(dividend, divisor, "").unwrap(); + builder.build_return(Some("ient)).unwrap(); + + let remainder_function = add_word_function(&llvm, &context, "test_srem", 1); + builder.position_at_end(remainder_function.get_first_basic_block().unwrap()); + let dividend = remainder_function + .get_first_param() + .unwrap() + .into_int_value(); + let remainder = builder.build_int_signed_rem(dividend, divisor, "").unwrap(); + builder.build_return(Some(&remainder)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_barrett_helpers(&context), 0); + let sdiv256 = context.module().get_function("__sdiv256").unwrap(); + let srem256 = context.module().get_function("__srem256").unwrap(); + assert_eq!(count_calls_to(division, sdiv256), 1); + assert_eq!(count_calls_to(remainder_function, srem256), 1); + context.verify().unwrap(); +} + +#[test] +fn barrett_handles_degenerate_full_width_divisor() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + let builder = llvm.create_builder(); + + // 2^256 - 1: bits(C) == 256, the compare-and-subtract helper body. + let divisor = (BigUint::from(1u32) << 256u32) - 1u32; + + let division = add_word_function(&llvm, &context, "test_udiv", 1); + builder.position_at_end(division.get_first_basic_block().unwrap()); + let dividend = division.get_first_param().unwrap().into_int_value(); + let quotient = builder + .build_int_unsigned_div(dividend, Context::biguint_constant(word_type, &divisor), "") + .unwrap(); + builder.build_return(Some("ient)).unwrap(); + + let remainder_function = add_word_function(&llvm, &context, "test_urem", 1); + builder.position_at_end(remainder_function.get_first_basic_block().unwrap()); + let dividend = remainder_function + .get_first_param() + .unwrap() + .into_int_value(); + let remainder = builder + .build_int_unsigned_rem(dividend, Context::biguint_constant(word_type, &divisor), "") + .unwrap(); + builder.build_return(Some(&remainder)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_barrett_helpers(&context), 2); + assert_eq!(count_opcodes(division, InstructionOpcode::UDiv, None), 0); + assert_eq!( + count_opcodes(remainder_function, InstructionOpcode::URem, None), + 0 + ); + context.verify().unwrap(); +} + +#[test] +fn wide_unsigned_constant_round_trips_without_instructions() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + let function = add_word_function(&llvm, &context, "test", 1); + let entry = function.get_first_basic_block().unwrap(); + let builder = llvm.create_builder(); + builder.position_at_end(entry); + + let expected = secp256k1_prime(); + let constant = Context::biguint_constant(word_type, &expected); + let extracted = Context::wide_unsigned_constant(&builder, constant) + .expect("the constant must be extractable"); + assert_eq!(extracted, expected); + // Pins the fold-only contract: extraction must not insert instructions. + assert_eq!(entry.get_instructions().count(), 0); +} + +#[test] +fn mulmod_constant_modulus_rewrites_to_barrett_call() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + let modulus = secp256k1_prime(); + let function = add_word_function(&llvm, &context, "test", 2); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let mulmod = context.module().get_function("__mulmod").unwrap(); + let result = builder + .build_call( + mulmod, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + Context::biguint_constant(word_type, &modulus).into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + + context.lower_wide_division(); + + let mulmod_barrett = context.module().get_function("__mulmod_barrett").unwrap(); + assert_eq!(count_calls_to(function, mulmod), 0); + assert_eq!(count_calls_to(function, mulmod_barrett), 1); + + // The rewritten call must carry floor(2^512 / m) - 2^256 as its fourth + // argument (LLVM interns constants, so pointer equality is complete). + let expected_reciprocal_low = + (BigUint::from(1u32) << 512u32) / &modulus - (BigUint::from(1u32) << 256u32); + let expected_constant = Context::biguint_constant(word_type, &expected_reciprocal_low); + let call = function + .get_basic_blocks() + .into_iter() + .flat_map(|basic_block| basic_block.get_instructions()) + .find(|instruction| instruction.get_opcode() == InstructionOpcode::Call) + .expect("the rewritten call must exist"); + assert_eq!(call.get_num_operands(), 5); + let reciprocal_argument = call + .get_operand(3) + .unwrap() + .value() + .unwrap() + .into_int_value(); + assert_eq!(reciprocal_argument, expected_constant); + context.verify().unwrap(); +} + +#[test] +fn mulmod_small_constant_modulus_stays_routed() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + // 2^128 + 1: bits == 129 < 256, below the sharp eligibility boundary. + let modulus = (BigUint::from(1u32) << 128u32) + 1u32; + let function = add_word_function(&llvm, &context, "test", 2); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let mulmod = context.module().get_function("__mulmod").unwrap(); + let result = builder + .build_call( + mulmod, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + Context::biguint_constant(word_type, &modulus).into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_calls_to(function, mulmod), 1); + let mulmod_barrett = context.module().get_function("__mulmod_barrett").unwrap(); + assert_eq!(count_calls_to(function, mulmod_barrett), 0); + context.verify().unwrap(); +} + +#[test] +fn mulmod_power_of_two_modulus_becomes_masked_multiply() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + // 2^255: the mu_lo-overflow case, must take the inline mask rewrite. + let modulus = BigUint::from(1u32) << 255u32; + let function = add_word_function(&llvm, &context, "test", 2); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let mulmod = context.module().get_function("__mulmod").unwrap(); + let result = builder + .build_call( + mulmod, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + Context::biguint_constant(word_type, &modulus).into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_opcodes(function, InstructionOpcode::Call, None), 0); + assert_eq!( + count_opcodes(function, InstructionOpcode::Mul, Some(256)), + 1 + ); + assert_eq!( + count_opcodes(function, InstructionOpcode::And, Some(256)), + 1 + ); + let expected_mask = Context::biguint_constant(word_type, &(modulus - 1u32)); + let and_instruction = function + .get_basic_blocks() + .into_iter() + .flat_map(|basic_block| basic_block.get_instructions()) + .find(|instruction| instruction.get_opcode() == InstructionOpcode::And) + .unwrap(); + let mask_operand = and_instruction + .get_operand(1) + .unwrap() + .value() + .unwrap() + .into_int_value(); + assert_eq!(mask_operand, expected_mask); + context.verify().unwrap(); +} + +#[test] +fn mulmod_runtime_modulus_stays_untouched() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + + let function = add_word_function(&llvm, &context, "test", 3); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let mulmod = context.module().get_function("__mulmod").unwrap(); + let result = builder + .build_call( + mulmod, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + function.get_nth_param(2).unwrap().into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_calls_to(function, mulmod), 1); + assert_eq!(count_barrett_helpers(&context), 0); + context.verify().unwrap(); +} + +#[test] +fn mulmod_unrelated_calls_stay_untouched() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let context = Context::new_dummy(&llvm, OptimizerSettings::cycles()); + let word_type = context.word_type(); + + // Same shape as an eligible __mulmod call, different callee. + let unrelated = context.module().add_function( + "unrelated_three_argument_function", + word_type.fn_type( + &[word_type.into(), word_type.into(), word_type.into()], + false, + ), + None, + ); + let function = add_word_function(&llvm, &context, "test", 2); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let result = builder + .build_call( + unrelated, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + Context::biguint_constant(word_type, &secp256k1_prime()).into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + + context.lower_wide_division(); + + assert_eq!(count_calls_to(function, unrelated), 1); + let mulmod_barrett = context.module().get_function("__mulmod_barrett").unwrap(); + assert_eq!(count_calls_to(function, mulmod_barrett), 0); + context.verify().unwrap(); +} + +#[test] +fn reciprocal_self_checks_hold_on_fuzz_matrix_constants() { + let one = BigUint::from(1u32); + + // The adversarial mulmod modulus grid from the verification protocol. + for modulus in [ + (&one << 255u32) + 1u32, + (&one << 255u32) + 3u32, + (&one << 256u32) - 1u32, + (&one << 256u32) - 2u32, + (&one << 256u32) - 3u32, + secp256k1_prime(), + (&one << 255u32) | &one, + (&one << 255u32) | ((&one << 128u32) - 1u32), + (&one << 255u32) + (&one << 254u32) + 1u32, + ] { + let reciprocal_low = Context::mulmod_reciprocal_low(&modulus); + assert!(reciprocal_low >= one && reciprocal_low.bits() <= 256); + } + + // The per-constant division/remainder fuzz list. + for divisor in [ + BigUint::from(3u32), + BigUint::from(5u32), + BigUint::from(10u32), + (&one << 64u32) + 1u32, + (&one << 128u32) - 1u32, + (&one << 128u32) + 1u32, + (&one << 192u32) + 9u32, + (&one << 255u32) + 3u32, + (&one << 256u32) - 1u32, + ] { + let reciprocal = Context::division_reciprocal(&divisor); + assert!(reciprocal >= one && reciprocal.bits() <= 256); + } +} + +/// Builds `__mulmod(x, y, xor(load(slot), -1))` in a fresh function, with +/// `not(modulus)` stored to a stack slot: the modulus operand is a real +/// instruction chain rather than a `ConstantInt`, modeling how solc emits +/// large constants in NOT-form. +fn add_composed_modulus_mulmod_function<'ctx>( + llvm: &'ctx inkwell::context::Context, + context: &Context<'ctx>, + modulus: &BigUint, +) -> inkwell::values::FunctionValue<'ctx> { + let word_type = context.word_type(); + let function = add_word_function(llvm, context, "test", 2); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + + let all_ones = (BigUint::from(1u32) << 256u32) - 1u32; + let negated_modulus = Context::biguint_constant(word_type, &(&all_ones ^ modulus)); + let slot = builder.build_alloca(word_type, "slot").unwrap(); + builder.build_store(slot, negated_modulus).unwrap(); + let loaded = builder + .build_load(word_type, slot, "") + .unwrap() + .into_int_value(); + let composed_modulus = builder + .build_xor(loaded, word_type.const_all_ones(), "") + .unwrap(); + + let mulmod = context.module().get_function("__mulmod").unwrap(); + let result = builder + .build_call( + mulmod, + &[ + function.get_nth_param(0).unwrap().into(), + function.get_nth_param(1).unwrap().into(), + composed_modulus.into(), + ], + "", + ) + .unwrap() + .try_as_basic_value() + .unwrap_basic(); + builder.build_return(Some(&result)).unwrap(); + function +} + +#[test] +fn mulmod_composed_constant_modulus_specializes_before_pipeline() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let settings = OptimizerSettings::cycles(); + let context = Context::new_dummy(&llvm, settings.clone()); + let function = add_composed_modulus_mulmod_function(&llvm, &context, &secp256k1_prime()); + let mulmod = context.module().get_function("__mulmod").unwrap(); + assert_eq!(count_calls_to(function, mulmod), 1); + + let target_machine = crate::PolkaVMTargetMachine::new(PolkaVMTarget::PVM, &settings, false) + .expect("the test target machine must be creatable"); + context + .specialize_constant_modulus_mulmod(&target_machine) + .expect("the pre-pipeline specialization must succeed"); + + // The constant-fold pre-pass exposes the NOT-form modulus and the sweep + // retargets the call, even though nothing was a `ConstantInt` when the + // module was built. + let mulmod_barrett = context.module().get_function("__mulmod_barrett").unwrap(); + assert_eq!(count_calls_to(function, mulmod), 0); + assert_eq!(count_calls_to(function, mulmod_barrett), 1); +} + +#[test] +fn mulmod_specialization_is_skipped_at_optimization_level_zero() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let settings = OptimizerSettings::none(); + let context = Context::new_dummy(&llvm, settings.clone()); + let function = add_composed_modulus_mulmod_function(&llvm, &context, &secp256k1_prime()); + + let target_machine = crate::PolkaVMTargetMachine::new(PolkaVMTarget::PVM, &settings, false) + .expect("the test target machine must be creatable"); + context + .specialize_constant_modulus_mulmod(&target_machine) + .expect("the pre-pipeline specialization must succeed"); + + // At -O0 the hook returns before doing anything: the call still targets + // `__mulmod` and the constant-fold pre-pass never ran (the stack slot + // `mem2reg` would have promoted is still there). + let mulmod = context.module().get_function("__mulmod").unwrap(); + let mulmod_barrett = context.module().get_function("__mulmod_barrett").unwrap(); + assert_eq!(count_calls_to(function, mulmod), 1); + assert_eq!(count_calls_to(function, mulmod_barrett), 0); + assert_eq!(count_opcodes(function, InstructionOpcode::Alloca, None), 1); +} + +#[test] +fn mulmod_specialization_is_skipped_without_mulmod_calls() { + initialize_llvm(); + + let llvm = inkwell::context::Context::create(); + let settings = OptimizerSettings::cycles(); + let context = Context::new_dummy(&llvm, settings.clone()); + + // A function with foldable memory traffic but no `__mulmod` call. + let word_type = context.word_type(); + let function = add_word_function(&llvm, &context, "test", 1); + let builder = llvm.create_builder(); + builder.position_at_end(function.get_first_basic_block().unwrap()); + let slot = builder.build_alloca(word_type, "slot").unwrap(); + builder + .build_store(slot, function.get_first_param().unwrap().into_int_value()) + .unwrap(); + let loaded = builder + .build_load(word_type, slot, "") + .unwrap() + .into_int_value(); + builder.build_return(Some(&loaded)).unwrap(); + + let target_machine = crate::PolkaVMTargetMachine::new(PolkaVMTarget::PVM, &settings, false) + .expect("the test target machine must be creatable"); + context + .specialize_constant_modulus_mulmod(&target_machine) + .expect("the pre-pipeline specialization must succeed"); + + // `__mulmod` exists in the module (the stdlib is always linked) but has + // no uses, so the hook must skip the pre-pass entirely: the promotable + // stack slot proves no optimization ran. + assert_eq!(count_opcodes(function, InstructionOpcode::Alloca, None), 1); +} diff --git a/crates/stdlib/src/lib.rs b/crates/stdlib/src/lib.rs index 8634a78db..d8b8d1904 100644 --- a/crates/stdlib/src/lib.rs +++ b/crates/stdlib/src/lib.rs @@ -28,5 +28,6 @@ mod tests { let module = crate::module(&context, "stdlib").unwrap(); assert!(module.get_function("__signextend").is_some()); + assert!(module.get_function("__mulmod_barrett").is_some()); } } diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index 186d61aeb..cc33c6924 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -408,7 +408,7 @@ entry: ; Unsigned 256-bit division, quotient only: returns u / v (floor). ; Precondition: v != 0, inherited from the raw i256 udiv this replaces. ; Thin wrapper: the quotient half of __udivrem256. revive emits raw i256 -; udiv/urem; the narrow_divrem_instructions pass rewrites the non-narrowable +; udiv/urem; the lower_wide_division pass rewrites the non-narrowable ; ones into calls to these wrappers. Kept external so they survive ; optimization until that late pass; unused copies are dropped by the final ; linker --gc-sections. @@ -528,6 +528,62 @@ slow: ret i256 %res } +; (a*b) mod m via Barrett reduction (HAC 14.42 with b=2, k=t=256), for +; compile-time-constant 256-bit moduli. The compiler rewrites eligible +; __mulmod call sites to this and supplies the reciprocal -- before the +; optimization pipeline for moduli that are already constant (the common +; case), after it for moduli the pipeline exposes as constant. +; +; Preconditions (guaranteed at every rewritten call site; violations return +; garbage but never trap -- the body is straight-line, no udiv/urem/br): +; 2^255 < m < 2^256, m not a power of two, +; mu_lo = floor(2^512/m) - 2^256, so mu = 2^256 + mu_lo with +; 2^256 < mu < 2^257 (m <= 2^256-1 => mu >= 2^256+1 since +; (2^256-1)(2^256+1) < 2^512; m > 2^255 => mu < 2^257). +; +; a and b need NOT be pre-reduced: a*b <= (2^256-1)^2 < 2^512 = b^(2k) is +; exactly HAC's operand bound at t = 256, which is why only 256-bit moduli +; are eligible (smaller moduli stay on __mulmod). +; +; Quotient bound: upper -- q3 <= (x/2^255)(2^512/m)/2^257 = x/m, so q3 <= q +; and r0 >= 0; lower -- q1 > x/2^255 - 1 and mu > 2^512/m - 1 give +; q1*mu/2^257 > x/m - x/2^512 - 2^255/m + 2^-257 > x/m - 2, so q3 >= q - 2. +define i256 @__mulmod_barrett(i256 %a, i256 %b, i256 %m, i256 %mu_lo) #0 { +entry: + %aw = zext i256 %a to i512 + %bw = zext i256 %b to i512 + %x = mul i512 %aw, %bw ; x < 2^512: no wrap + %q1 = lshr i512 %x, 255 ; q1 = floor(x/2^255) < 2^257 + ; q2 = q1*mu reconstructed as (q1 << 256) + q1*mu_lo in i576: + ; q1 << 256 < 2^513, q1*mu_lo < 2^513, q2 < 2^514 < 2^576: no wrap. + %q1w = zext i512 %q1 to i576 + %muw = zext i256 %mu_lo to i576 + %hi = shl i576 %q1w, 256 + %lo = mul i576 %q1w, %muw + %q2 = add i576 %hi, %lo + %q3w = lshr i576 %q2, 257 ; q3 <= floor(x/m), q3 < 2^257 + %q3 = trunc i576 %q3w to i320 ; lossless + ; r0 = x - q3*m computed mod 2^320: the true value lies in [0, 3m) with + ; 3m < 2^258, so 320-bit wrapping arithmetic reproduces it exactly. + %m3 = zext i256 %m to i320 + %x3 = trunc i512 %x to i320 + %q3m = mul i320 %q3, %m3 + %r0 = sub i320 %x3, %q3m + ; Exactly two conditional corrections (HAC note 14.44: 0 <= q - q3 <= 2): + ; r0 in [0,3m) -> r1 in [0,2m) -> r2 in [0,m). The bound is tight for this + ; parameterization (the two deficit terms x/2^512 and 2^255/m each approach + ; 1), so two is required and sufficient -- do not harmonize with the + ; division helpers' single correction; these are different theorems. + %c1 = icmp uge i320 %r0, %m3 + %s1 = sub i320 %r0, %m3 + %r1 = select i1 %c1, i320 %s1, i320 %r0 + %c2 = icmp uge i320 %r1, %m3 + %s2 = sub i320 %r1, %m3 + %r2 = select i1 %c2, i320 %s2, i320 %r1 + %res = trunc i320 %r2 to i256 ; r2 < m < 2^256: lossless + ret i256 %res +} + define i256 @__signextend(i256 %numbyte, i256 %value) #0 { entry: %is_overflow = icmp uge i256 %numbyte, 31 From 16ae4862548d9b5d5e8bac903a6b24e099ddc362 Mon Sep 17 00:00:00 2001 From: kvpanch <223931578+kvpanch@users.noreply.github.com> Date: Thu, 16 Jul 2026 08:48:44 -0400 Subject: [PATCH 11/12] Code coverage (#529) Adds `make coverage` (cargo-llvm-cov over the full workspace including revive-llvm-builder), a new "Code coverage" book chapter that briefly explains how to run it, and a PR workflow that runs coverage and comments on the PR (it updates the same comment if it already exists) when the `measure code coverage` label is applied (see e.g. [this comment](https://github.com/paritytech/revive/pull/529#issuecomment-4966136441)). Building instrumented LLVM and generating an LLVM C++ coverage report is also possible, see accompanying [PR description #575](https://github.com/paritytech/revive/pull/575) for more details. --------- Signed-off-by: Cyrill Leutwiler Signed-off-by: xermicus Co-authored-by: Cyrill Leutwiler Co-authored-by: xermicus Co-authored-by: elle-j Co-authored-by: LJ <81748770+elle-j@users.noreply.github.com> --- .github/workflows/code-coverage.yml | 165 ++++++++++ .github/workflows/test-llvm-builder.yml | 2 +- .gitignore | 1 + Makefile | 137 ++++++++ book/src/SUMMARY.md | 1 + book/src/developer_guide/coverage.md | 53 +++ .../src/platforms/aarch64_linux_musl.rs | 2 + crates/llvm-builder/src/platforms/shared.rs | 20 +- .../src/platforms/wasm32_emscripten.rs | 1 + .../src/platforms/x86_64_linux_musl.rs | 135 ++++---- crates/llvm-builder/src/utils.rs | 7 + docs/404.html | 4 +- docs/developer_guide.html | 4 +- docs/developer_guide/architecture.html | 4 +- docs/developer_guide/contributing.html | 4 +- docs/developer_guide/coverage.html | 311 ++++++++++++++++++ docs/developer_guide/cross_compilation.html | 8 +- docs/developer_guide/newyork_ir.html | 4 +- docs/developer_guide/newyork_optimizer.html | 4 +- docs/developer_guide/target.html | 4 +- docs/developer_guide/testing.html | 8 +- docs/faq.html | 4 +- docs/index.html | 4 +- docs/print.html | 66 +++- docs/revive_runner.html | 4 +- docs/roadmap.html | 4 +- docs/searcher-c2a407aa.js | 2 +- docs/searchindex-339ac392.js | 1 - docs/searchindex-57ec751f.js | 1 + docs/{toc-1290cc30.js => toc-f74aae8e.js} | 2 +- docs/toc.html | 2 +- docs/user_guide.html | 4 +- docs/user_guide/cli.html | 4 +- docs/user_guide/differences.html | 4 +- docs/user_guide/installation.html | 4 +- docs/user_guide/js.html | 4 +- docs/user_guide/rust_libraries.html | 4 +- docs/user_guide/std_json.html | 4 +- docs/user_guide/tooling.html | 4 +- docs/welcome.html | 4 +- 40 files changed, 882 insertions(+), 123 deletions(-) create mode 100644 .github/workflows/code-coverage.yml create mode 100644 book/src/developer_guide/coverage.md create mode 100644 docs/developer_guide/coverage.html delete mode 100644 docs/searchindex-339ac392.js create mode 100644 docs/searchindex-57ec751f.js rename docs/{toc-1290cc30.js => toc-f74aae8e.js} (97%) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml new file mode 100644 index 000000000..c3af8fcc1 --- /dev/null +++ b/.github/workflows/code-coverage.yml @@ -0,0 +1,165 @@ +# Label-gated coverage workflow (`measure code coverage`). +# +# The only trigger type is `labeled`: applying the label approves +# exactly the head commit present at that moment. Later pushes do NOT +# re-fire the workflow. The label is removed automatically at the end +# of every run, so re-applying it retriggers the workflow. + +name: Code coverage + +on: + pull_request: + branches: [main] + types: [labeled] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + +permissions: + contents: read + +env: + CARGO_TERM_COLOR: always + +jobs: + coverage: + name: Measure coverage + if: ${{ github.event.label.name == 'measure code coverage' }} + runs-on: parity-large + timeout-minutes: 30 + outputs: + artifact-url: ${{ steps.upload.outputs.artifact-url }} + permissions: + contents: read + steps: + - name: Checkout PR head + uses: actions/checkout@v6 + with: + ref: ${{ github.event.pull_request.head.sha }} + persist-credentials: false + + - name: Set up Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + rustflags: "" + components: llvm-tools-preview + + - name: Install solc + uses: ./.github/actions/get-solc + + - name: Install Geth + run: | + sudo add-apt-repository -y ppa:ethereum/ethereum + sudo apt update + sudo apt install -y ethereum + + - name: Download LLVM + uses: ./.github/actions/get-llvm + with: + target: x86_64-unknown-linux-gnu + + - name: Set LLVM environment variables + run: | + echo "LLVM_SYS_221_PREFIX=$(pwd)/llvm-x86_64-unknown-linux-gnu" >> $GITHUB_ENV + + - name: Run coverage and generate revive HTML report + id: coverage + run: | + make coverage + echo "report_dir=coverage-reports/$(cat target/llvm-cov-target/coverage-stamp)/revive" >> "$GITHUB_OUTPUT" + + - name: Upload coverage report + id: upload + uses: actions/upload-artifact@v6 + with: + name: coverage-report-pr-${{ github.event.pull_request.number }} + path: ${{ steps.coverage.outputs.report_dir }} + retention-days: 30 + + comment: + name: Comment coverage on PR + needs: coverage + # Use `always()` so the trigger label is consumed even when measurement + # fails or is cancelled. Skipped for fork PRs since their token is + # read-only, so commenting and label removal would fail. + if: >- + always() && github.event.label.name == 'measure code coverage' + && github.event.pull_request.head.repo.full_name == github.repository + runs-on: ubuntu-24.04 + permissions: + pull-requests: write + steps: + - name: Download coverage artifact + if: ${{ !cancelled() && needs.coverage.result == 'success' }} + uses: actions/download-artifact@v7 + with: + name: coverage-report-pr-${{ github.event.pull_request.number }} + path: coverage + + - name: Comment coverage report on PR + if: ${{ !cancelled() && needs.coverage.result == 'success' }} + uses: actions/github-script@v7 + env: + ARTIFACT_URL: ${{ needs.coverage.outputs.artifact-url }} + with: + script: | + const fs = require('fs'); + const summary = fs.readFileSync('coverage/summary.txt', 'utf8').trim(); + const owner = context.repo.owner; + const repo = context.repo.repo; + const prNumber = context.issue.number; + const sha = context.payload.pull_request.head.sha.substring(0, 8); + const runUrl = `${context.serverUrl}/${owner}/${repo}/actions/runs/${context.runId}`; + const artifactUrl = process.env.ARTIFACT_URL || runUrl; + const marker = ''; + const body = [ + marker, + `### Code coverage`, + ``, + `Report for commit \`${sha}\`: [click here to download the report](${artifactUrl}) and open \`html/index.html\` in a browser.`, + ``, + `
Summary`, + ``, + summary, + ``, + `
`, + ``, + `_Workflow run: [#${context.runId}](${runUrl})_`, + ].join('\n'); + + // Update the prior bot comment in place rather than spamming. + // Paginate so the marker is found on PRs with >100 comments. + const comments = await github.paginate( + github.rest.issues.listComments, + { owner, repo, issue_number: prNumber, per_page: 100 }, + ); + const existing = comments.find(c => c.body && c.body.includes(marker)); + if (existing) { + await github.rest.issues.updateComment({ + owner, repo, comment_id: existing.id, body, + }); + } else { + await github.rest.issues.createComment({ + owner, repo, issue_number: prNumber, body, + }); + } + + - name: Remove trigger label + if: always() + uses: actions/github-script@v7 + with: + script: | + try { + await github.rest.issues.removeLabel({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + name: 'measure code coverage', + }); + } catch (error) { + // 404: label already removed (e.g. by a human mid-run). + if (error.status !== 404) { + core.setFailed(`Failed to remove label: ${error.message}`); + } + } diff --git a/.github/workflows/test-llvm-builder.yml b/.github/workflows/test-llvm-builder.yml index 6f6bdbf34..cb246a1f3 100644 --- a/.github/workflows/test-llvm-builder.yml +++ b/.github/workflows/test-llvm-builder.yml @@ -33,7 +33,7 @@ jobs: - name: Install Dependencies if: matrix.runner == 'parity-large' run: | - sudo apt update && sudo apt-get install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl xz-utils build-essential + sudo apt update && sudo apt-get install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl xz-utils build-essential zlib1g-dev - name: Install Dependencies if: matrix.runner == 'macos-15' diff --git a/.gitignore b/.gitignore index 040ca8ef1..a04da5a75 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,5 @@ playwright-report .cache emsdk docs-tmp +coverage-reports workdir diff --git a/Makefile b/Makefile index ff43d02e3..1bb35234f 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ install-wasm \ install-llvm-builder \ install-llvm \ + install-llvm-coverage \ + install-cargo-llvm-cov \ install-revive-runner \ format \ clippy \ @@ -19,6 +21,9 @@ test-wasm \ test-llvm-builder \ test-book \ + coverage \ + coverage-llvm-report \ + coverage-browse \ bench \ bench-pvm \ bench-evm \ @@ -45,6 +50,17 @@ install-llvm: install-llvm-builder git submodule update --init --recursive --depth 1 revive-llvm build --llvm-projects lld --llvm-projects clang +# Build an instrumented LLVM, enabling LLVM C++ coverage. +# Shares the `target-llvm//` tree with `install-llvm`. +# Run `revive-llvm clean` between variants. `JOBS=N` caps build parallelism. +install-llvm-coverage: install-llvm-builder + git submodule update --init --recursive --depth 1 + CMAKE_BUILD_PARALLEL_LEVEL=$(JOBS) revive-llvm build --llvm-projects lld --llvm-projects clang --enable-coverage + +install-cargo-llvm-cov: + @command -v cargo-llvm-cov >/dev/null 2>&1 || cargo install cargo-llvm-cov --locked + @rustup component add llvm-tools-preview >/dev/null 2>&1 || true + install-revive-runner: cargo install --locked --force --path crates/runner --no-default-features @@ -91,6 +107,127 @@ test-book: cargo install mdbook --version 0.5.1 --locked mdbook test book +# The active run's report directory. Resolved at recipe time +# from the stamp that `coverage` records next to the profiles. +# Reports accumulate under coverage-reports//. +COVERAGE_REPORTS_DIR = coverage-reports/$$(cat target/llvm-cov-target/coverage-stamp) + +LLVM_IS_INSTRUMENTED = "$(LLVM_SYS_221_PREFIX)/bin/llvm-objdump" -h \ + "$(LLVM_SYS_221_PREFIX)/lib/libLLVMCore.a" 2>/dev/null \ + | grep -q __llvm_covmap + +# Build instrumented resolc against the existing LLVM build and run coverage. +# Envs are used for reducing disk and memory usage, and preventing errors +# arising because of it. See ./book/src/developer_guide/coverage.md on +# more details and troubleshooting techniques. +coverage: export CARGO_PROFILE_DEV_DEBUG = 0 +coverage: export LLVM_PROFILE_FILE_NAME = revive-%4m.profraw +coverage: install-cargo-llvm-cov + @if $(LLVM_IS_INSTRUMENTED); then \ + echo "note: instrumented LLVM in use. This run also collects LLVM C++ coverage and takes several hours."; \ + fi + cargo llvm-cov clean --workspace + mkdir -p target/llvm-cov-target + date '+%Y-%m-%d_%H-%M' > target/llvm-cov-target/coverage-stamp +# Explicitly build the resolc binary that the test suites spawn so +# that cargo uplifts it into the debug/ path used further below. + cargo llvm-cov run --no-report --bin resolc --locked -- --version + @test -x target/llvm-cov-target/debug/resolc || { \ + echo "error: no runnable resolc in target/llvm-cov-target/debug/."; \ + exit 1; \ + } +# Use `--no-report` in order to merge the two Rust reports at the later step. +# Benches are excluded (i.e. `--all-targets` is not used) since they run duplicate +# coverage the tests already provide, while their binaries noticeably inflate each +# report pass with instrumented LLVM. + PATH="$(CURDIR)/target/llvm-cov-target/debug:$$PATH" \ + cargo llvm-cov --no-report --workspace \ + --exclude revive-llvm-builder \ + --lib --bins --tests \ + --locked \ + --ignore-run-fail + PATH="$(CURDIR)/target/llvm-cov-target/debug:$$PATH" \ + cargo llvm-cov --no-report --package revive-integration \ + --features newyork \ + --locked \ + --ignore-run-fail +# Exclude the llvm/ and target-llvm/ trees from this workspace-only report (see +# `coverage-llvm-report` target), and the benchmarks which are excluded from the run. + cargo llvm-cov report --html --output-dir $(COVERAGE_REPORTS_DIR)/revive \ + --ignore-filename-regex '^$(CURDIR)/(llvm|target-llvm|crates/benchmarks)/' +# Slice the HTML report's header and totals rows into a Markdown-table summary, +# rather than invoking `report` again which would cost another full covmap decode. + awk '{ gsub(/Filename<" -e ">Totals<" \ + | sed 's/<\/td>/|/g; s/<[^>]*>//g; s/ */ /g; s/ *| */ | /g; s/^/| /; s/ $$//' \ + | awk 'NR == 1 { print; sep = $$0; gsub(/[^|]/, "-", sep); print sep; next } { print }' \ + | tee $(COVERAGE_REPORTS_DIR)/revive/summary.txt + @[ "$$(wc -l < $(COVERAGE_REPORTS_DIR)/revive/summary.txt)" -eq 3 ] || { \ + echo "error: unexpected llvm-cov HTML structure. Fix the summary extraction."; \ + exit 1; \ + } + @echo "revive coverage report: file://$(CURDIR)/$(COVERAGE_REPORTS_DIR)/revive/html/index.html" + @if $(LLVM_IS_INSTRUMENTED); then \ + echo "note: instrumented LLVM detected. Run 'make coverage-llvm-report'" \ + "to generate the LLVM C++ coverage report from this run."; \ + fi + +# Render the LLVM C++ coverage report that a `make coverage` run against an +# instrumented LLVM enabled. This is kept separate from the Rust report to +# prevent blending LLVM percentages into resolc's own coverage numbers. +coverage-llvm-report: + @$(LLVM_IS_INSTRUMENTED) || { \ + echo "error: no instrumented LLVM at LLVM_SYS_221_PREFIX='$(LLVM_SYS_221_PREFIX)'" \ + "('make install-llvm-coverage' enables it)."; \ + exit 1; \ + } + @"$(LLVM_SYS_221_PREFIX)/bin/llvm-config" --system-libs | grep -q -- -lz || { \ + echo "error: the instrumented LLVM at LLVM_SYS_221_PREFIX lacks zlib." \ + "Install it and rebuild LLVM with 'make install-llvm-coverage'."; \ + exit 1; \ + } + @find target/llvm-cov-target -name '*.profraw' 2>/dev/null | grep -q . || { \ + echo "error: no coverage profiles found. Run 'make coverage' first."; \ + exit 1; \ + } + @test -f target/llvm-cov-target/coverage-stamp || { \ + echo "error: no recorded coverage run stamp. Run 'make coverage' first."; \ + exit 1; \ + } + mkdir -p target/coverage-llvm +# Raw llvm-profdata/llvm-cov is used (rather than `cargo llvm-cov`) since +# that allows include-only filtering (e.g. "only llvm/"). + "$(LLVM_SYS_221_PREFIX)/bin/llvm-profdata" merge -sparse \ + --failure-mode=all \ + $$(find target/llvm-cov-target -name '*.profraw') \ + -o target/coverage-llvm/llvm.profdata + "$(LLVM_SYS_221_PREFIX)/bin/llvm-cov" show -format=html \ + -output-dir $(COVERAGE_REPORTS_DIR)/llvm/html \ + -instr-profile target/coverage-llvm/llvm.profdata \ + target/llvm-cov-target/debug/resolc \ + llvm/ + @echo "LLVM C++ coverage report: file://$(CURDIR)/$(COVERAGE_REPORTS_DIR)/llvm/html/index.html" + +# Local coverage browsing. +# Prints clickable links to the HTML reports of every recorded coverage run. +coverage-browse: + @runs="$$(ls -1r coverage-reports 2>/dev/null)"; \ + if [ -z "$$runs" ]; then \ + echo "note: no coverage reports found. Run 'make coverage' first."; \ + else \ + for run in $$runs; do \ + echo "$$run:"; \ + test -f "coverage-reports/$$run/revive/html/index.html" && \ + echo " revive: file://$(CURDIR)/coverage-reports/$$run/revive/html/index.html" && \ + echo; \ + test -f "coverage-reports/$$run/llvm/html/index.html" && \ + echo " LLVM C++: file://$(CURDIR)/coverage-reports/$$run/llvm/html/index.html" && \ + echo; \ + true; \ + done; \ + fi + bench: install-bin cargo criterion --all --all-features --message-format=json \ | criterion-table > crates/benchmarks/BENCHMARKS.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 7d5382542..2ec2e3b8d 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -17,6 +17,7 @@ - [IR reference](./developer_guide/newyork_ir.md) - [PVM and the pallet-revive runtime target](./developer_guide/target.md) - [Testing strategy](./developer_guide/testing.md) + - [Code coverage](./developer_guide/coverage.md) - [Cross compilation](./developer_guide/cross_compilation.md) - [FAQ](./faq.md) - [Roadmap and Vision](./roadmap.md) diff --git a/book/src/developer_guide/coverage.md b/book/src/developer_guide/coverage.md new file mode 100644 index 000000000..a0687850e --- /dev/null +++ b/book/src/developer_guide/coverage.md @@ -0,0 +1,53 @@ +# Code coverage + +Revive measures Rust and LLVM C++ line and region coverage with [`cargo-llvm-cov`](https://github.com/taiki-e/cargo-llvm-cov) over the same tests as `make test-workspace`. + +Two ways to obtain a report: + +1. **Locally:** `make coverage` and `make coverage-llvm-report` (described below). +2. **Per PR:** apply the `measure code coverage` label and read the bot-generated PR comment once the triggered workflow completes. + +## Running locally + +```bash +# Install LLVM. +make install-llvm + +# Or install instrumented LLVM. +make install-llvm-coverage + +# ..set LLVM_SYS_221_PREFIX to a compatible LLVM build.. + +# Run coverage and generate revive Rust report. +make coverage + +# Generate a separate LLVM C++ report if needed, if +# instrumented LLVM was used for `make coverage`. +make coverage-llvm-report + +# Print clickable links to all accumulated HTML reports detected +# (they're grouped by timestamps) to easily view them in the browser. +make coverage-browse +``` + +The target: + +1. Builds and tests the workspace under cargo-llvm-cov with `--ignore-run-fail` so partial coverage lands even when test binaries exit non-zero. +2. Writes a browsable HTML report into a timestamped run directory (`coverage-reports//revive/` or `coverage-reports//llvm/`). + +## Resource requirements and troubleshooting + +`make coverage` bakes in two defaults that keep instrumented runs tractable: +* It drops DWARF with `CARGO_PROFILE_DEV_DEBUG=0` since coverage line data lives in the binaries' `__llvm_covmap` sections. +* It bounds profile output with `LLVM_PROFILE_FILE_NAME=revive-%4m.profraw`. The default pattern contains `%p`, writing one raw profile per process. With an instrumented LLVM this could exceed tens of gigabytes of raw profiles in a full run. The `%4m` merge pool makes processes merge their counters into a handful of files instead. + +Even with those defaults, plan for: + +* Disk space: + * Building instrumented LLVM and running an instrumented `make coverage` still needs tens of gigabytes of disk space. +* LLVM link memory (`make install-llvm-coverage`): + * If a link step gets OOM-killed, rerun with capped parallelism (e.g. `JOBS=1`) to serialize the links. The rerun resumes incrementally. +* Test-binary link memory (`make coverage`): + * If a link gets OOM-killed, rerun with `RUSTFLAGS="-C link-arg=-fuse-ld=lld"` (or _additionally_ with capped parallelism, e.g. `CARGO_BUILD_JOBS=1`). GNU ld holds every input object and the coverage mapping of the entire dependency closure in memory at once. lld links with a smaller peak. +* Test-run memory (`make coverage`): + * Each concurrently running test spawns an instrumented resolc. On memory-constrained machines cap it with `RUST_TEST_THREADS=4`. This throttles test execution only, not compilation. diff --git a/crates/llvm-builder/src/platforms/aarch64_linux_musl.rs b/crates/llvm-builder/src/platforms/aarch64_linux_musl.rs index a59c26b6f..d99c82eb3 100644 --- a/crates/llvm-builder/src/platforms/aarch64_linux_musl.rs +++ b/crates/llvm-builder/src/platforms/aarch64_linux_musl.rs @@ -120,6 +120,7 @@ fn build_crt( "-DCMAKE_C_COMPILER='clang'", "-DCMAKE_CXX_COMPILER='clang++'", "-DLLVM_ENABLE_PROJECTS='compiler-rt'", + "-DLLVM_ENABLE_ZLIB='Off'", format!("-DLLVM_TARGETS_TO_BUILD='{}'", Platform::AArch64).as_str(), "-DLLVM_DEFAULT_TARGET_TRIPLE='aarch64-unknown-linux-musl'", "-DLLVM_BUILD_TESTS='Off'", @@ -200,6 +201,7 @@ fn build_host( "-DLLVM_INCLUDE_UTILS='Off'", "-DLLVM_ENABLE_PROJECTS='clang;lld'", "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi;libunwind'", + "-DLLVM_ENABLE_ZLIB='Off'", "-DLIBCXX_CXX_ABI='libcxxabi'", "-DLIBCXX_HAS_MUSL_LIBC='On'", "-DLIBCXX_ENABLE_SHARED='Off'", diff --git a/crates/llvm-builder/src/platforms/shared.rs b/crates/llvm-builder/src/platforms/shared.rs index 38362ce55..957db0524 100644 --- a/crates/llvm-builder/src/platforms/shared.rs +++ b/crates/llvm-builder/src/platforms/shared.rs @@ -8,7 +8,8 @@ use std::path::Path; use std::process::Command; /// The build options shared by all platforms. -pub const SHARED_BUILD_OPTS: [&str; 21] = [ +/// `LLVM_ENABLE_ZLIB` is emitted by [`shared_build_opts_coverage`]. +pub const SHARED_BUILD_OPTS: [&str; 20] = [ "-DPACKAGE_VENDOR='Parity Technologies'", "-DCMAKE_BUILD_WITH_INSTALL_RPATH=1", "-DLLVM_BUILD_DOCS='Off'", @@ -18,7 +19,6 @@ pub const SHARED_BUILD_OPTS: [&str; 21] = [ "-DLLVM_ENABLE_DOXYGEN='Off'", "-DLLVM_ENABLE_SPHINX='Off'", "-DLLVM_ENABLE_OCAMLDOC='Off'", - "-DLLVM_ENABLE_ZLIB='Off'", "-DLLVM_ENABLE_ZSTD='Off'", "-DLLVM_ENABLE_LIBXML2='Off'", "-DLLVM_ENABLE_BINDINGS='Off'", @@ -188,10 +188,18 @@ pub fn shared_build_opts_tests(enabled: bool) -> Vec { /// The code coverage build options shared by all platforms. pub fn shared_build_opts_coverage(enabled: bool) -> Vec { - vec![format!( - "-DLLVM_BUILD_INSTRUMENTED_COVERAGE='{}'", - if enabled { "On" } else { "Off" }, - )] + vec![ + format!( + "-DLLVM_BUILD_INSTRUMENTED_COVERAGE='{}'", + if enabled { "On" } else { "Off" }, + ), + // zlib is required to be able to read the compressed profiles that + // instrumented resolc binaries emit. + format!( + "-DLLVM_ENABLE_ZLIB='{}'", + if enabled { "FORCE_ON" } else { "Off" }, + ), + ] } /// Use of compiler cache (ccache) to speed up the build process. diff --git a/crates/llvm-builder/src/platforms/wasm32_emscripten.rs b/crates/llvm-builder/src/platforms/wasm32_emscripten.rs index 93cdc39d3..fcbfcd6ef 100644 --- a/crates/llvm-builder/src/platforms/wasm32_emscripten.rs +++ b/crates/llvm-builder/src/platforms/wasm32_emscripten.rs @@ -98,6 +98,7 @@ fn build_host( crate::Platform::PolkaVM ), "-DLLVM_ENABLE_PROJECTS='clang;lld'", + "-DLLVM_ENABLE_ZLIB='Off'", ]) .args(crate::platforms::shared::SHARED_BUILD_OPTS) .args(crate::platforms::shared::SHARED_BUILD_OPTS_NOT_MUSL) diff --git a/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs b/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs index c33c94681..1e937dd9b 100644 --- a/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs +++ b/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs @@ -70,6 +70,7 @@ pub fn build( musl_target.as_path(), llvm_target_crt.as_path(), ccache_variant, + enable_coverage, )?; build_target( build_type, @@ -121,6 +122,7 @@ fn build_crt( "-DCMAKE_C_COMPILER='clang'", "-DCMAKE_CXX_COMPILER='clang++'", "-DLLVM_ENABLE_PROJECTS='compiler-rt'", + "-DLLVM_ENABLE_ZLIB='Off'", format!("-DLLVM_TARGETS_TO_BUILD='{}'", Platform::X86).as_str(), "-DLLVM_DEFAULT_TARGET_TRIPLE='x86_64-pc-linux-musl'", "-DLLVM_BUILD_TESTS='Off'", @@ -166,69 +168,78 @@ fn build_host( musl_target_directory: &Path, crt_target_directory: &Path, ccache_variant: Option, + enable_coverage: bool, ) -> anyhow::Result<()> { - crate::utils::command( - Command::new("cmake") - .args([ - "-S", - source_directory.to_string_lossy().as_ref(), - "-B", - build_directory.to_string_lossy().as_ref(), - "-G", - "Ninja", - format!( - "-DDEFAULT_SYSROOT='{}'", - musl_target_directory.to_string_lossy() - ) - .as_str(), - "-DLINKER_SUPPORTS_COLOR_DIAGNOSTICS=0", - format!( - "-DCMAKE_INSTALL_PREFIX='{}'", - target_directory.to_string_lossy() - ) - .as_str(), - "-DCMAKE_BUILD_TYPE='Release'", - "-DCMAKE_C_COMPILER='clang'", - "-DCMAKE_CXX_COMPILER='clang++'", - "-DCLANG_DEFAULT_CXX_STDLIB='libc++'", - "-DCLANG_DEFAULT_RTLIB='compiler-rt'", - "-DLLVM_DEFAULT_TARGET_TRIPLE='x86_64-pc-linux-musl'", - "-DLLVM_TARGETS_TO_BUILD='X86'", - "-DLLVM_BUILD_TESTS='Off'", - "-DLLVM_BUILD_UTILS='Off'", - "-DLLVM_INCLUDE_TESTS='Off'", - "-DLLVM_INCLUDE_UTILS='Off'", - "-DLLVM_ENABLE_PROJECTS='clang;lld'", - "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi;libunwind'", - "-DLIBCXX_CXX_ABI='libcxxabi'", - "-DLIBCXX_HAS_MUSL_LIBC='On'", - "-DLIBCXX_ENABLE_SHARED='Off'", - "-DLIBCXX_ENABLE_STATIC='On'", - "-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY='On'", - "-DLIBCXXABI_ENABLE_SHARED='Off'", - "-DLIBCXXABI_ENABLE_STATIC='On'", - "-DLIBCXXABI_ENABLE_STATIC_UNWINDER='On'", - "-DLIBCXXABI_USE_LLVM_UNWINDER='On'", - "-DLIBCXXABI_USE_COMPILER_RT='On'", - "-DLIBUNWIND_ENABLE_STATIC='On'", - "-DLIBUNWIND_ENABLE_SHARED='Off'", - "-DCOMPILER_RT_BUILD_CRT='On'", - "-DCOMPILER_RT_BUILD_SANITIZERS='Off'", - "-DCOMPILER_RT_BUILD_XRAY='Off'", - "-DCOMPILER_RT_BUILD_LIBFUZZER='Off'", - "-DCOMPILER_RT_BUILD_PROFILE='On'", - "-DCOMPILER_RT_BUILD_MEMPROF='Off'", - "-DCOMPILER_RT_BUILD_ORC='Off'", - "-DCOMPILER_RT_DEFAULT_TARGET_ARCH='x86_64'", - "-DLIBCLANG_BUILD_STATIC='On'", - "-DBUILD_SHARED_LIBS='Off'", - ]) - .args(crate::platforms::shared::SHARED_BUILD_OPTS) - .args(crate::platforms::shared::shared_build_opts_ccache( - ccache_variant, - )), - "LLVM host building cmake", - )?; + let mut cmake_command = Command::new("cmake"); + cmake_command + .args([ + "-S", + source_directory.to_string_lossy().as_ref(), + "-B", + build_directory.to_string_lossy().as_ref(), + "-G", + "Ninja", + format!( + "-DDEFAULT_SYSROOT='{}'", + musl_target_directory.to_string_lossy() + ) + .as_str(), + "-DLINKER_SUPPORTS_COLOR_DIAGNOSTICS=0", + format!( + "-DCMAKE_INSTALL_PREFIX='{}'", + target_directory.to_string_lossy() + ) + .as_str(), + "-DCMAKE_BUILD_TYPE='Release'", + "-DCMAKE_C_COMPILER='clang'", + "-DCMAKE_CXX_COMPILER='clang++'", + "-DCLANG_DEFAULT_CXX_STDLIB='libc++'", + "-DCLANG_DEFAULT_RTLIB='compiler-rt'", + "-DLLVM_DEFAULT_TARGET_TRIPLE='x86_64-pc-linux-musl'", + "-DLLVM_TARGETS_TO_BUILD='X86'", + "-DLLVM_BUILD_TESTS='Off'", + "-DLLVM_BUILD_UTILS='Off'", + "-DLLVM_INCLUDE_TESTS='Off'", + "-DLLVM_INCLUDE_UTILS='Off'", + "-DLLVM_ENABLE_PROJECTS='clang;lld'", + "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi;libunwind'", + "-DLLVM_ENABLE_ZLIB='Off'", + "-DLIBCXX_CXX_ABI='libcxxabi'", + "-DLIBCXX_HAS_MUSL_LIBC='On'", + "-DLIBCXX_ENABLE_SHARED='Off'", + "-DLIBCXX_ENABLE_STATIC='On'", + "-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY='On'", + "-DLIBCXXABI_ENABLE_SHARED='Off'", + "-DLIBCXXABI_ENABLE_STATIC='On'", + "-DLIBCXXABI_ENABLE_STATIC_UNWINDER='On'", + "-DLIBCXXABI_USE_LLVM_UNWINDER='On'", + "-DLIBCXXABI_USE_COMPILER_RT='On'", + "-DLIBUNWIND_ENABLE_STATIC='On'", + "-DLIBUNWIND_ENABLE_SHARED='Off'", + "-DCOMPILER_RT_BUILD_CRT='On'", + "-DCOMPILER_RT_BUILD_SANITIZERS='Off'", + "-DCOMPILER_RT_BUILD_XRAY='Off'", + "-DCOMPILER_RT_BUILD_LIBFUZZER='Off'", + "-DCOMPILER_RT_BUILD_PROFILE='On'", + "-DCOMPILER_RT_BUILD_MEMPROF='Off'", + "-DCOMPILER_RT_BUILD_ORC='Off'", + "-DCOMPILER_RT_DEFAULT_TARGET_ARCH='x86_64'", + "-DLIBCLANG_BUILD_STATIC='On'", + "-DBUILD_SHARED_LIBS='Off'", + ]) + .args(crate::platforms::shared::SHARED_BUILD_OPTS) + .args(crate::platforms::shared::shared_build_opts_ccache( + ccache_variant, + )); + if enable_coverage { + cmake_command.args([ + "-DCOMPILER_RT_BUILD_CTX_PROFILE='Off'", + // Skip the link-based target probe; libc++ isn't built yet so + // the probe fails and silently disables `libclang_rt.profile.a`. + "-DCOMPILER_RT_DEFAULT_TARGET_ONLY='On'", + ]); + } + crate::utils::command(&mut cmake_command, "LLVM host building cmake")?; let mut crt_lib_directory = crt_target_directory.to_path_buf(); crt_lib_directory.push("lib/"); diff --git a/crates/llvm-builder/src/utils.rs b/crates/llvm-builder/src/utils.rs index 371202626..587888d9a 100644 --- a/crates/llvm-builder/src/utils.rs +++ b/crates/llvm-builder/src/utils.rs @@ -104,6 +104,13 @@ pub fn ninja(build_dir: &Path) -> anyhow::Result<()> { if std::env::var("DRY_RUN").is_ok() { ninja.arg("-n"); } + // Mirror cmake's native CMAKE_BUILD_PARALLEL_LEVEL so one env var + // throttles both this ninja call and the compiler-rt `cmake --build`. + if let Ok(jobs) = std::env::var("CMAKE_BUILD_PARALLEL_LEVEL") { + if !jobs.is_empty() { + ninja.args(["-j", &jobs]); + } + } command(ninja.arg("install"), "Running ninja install")?; Ok(()) } diff --git a/docs/404.html b/docs/404.html index 70e1867d9..2f7cdba5f 100644 --- a/docs/404.html +++ b/docs/404.html @@ -36,10 +36,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/developer_guide.html b/docs/developer_guide.html index 96df68492..e8a13cfdc 100644 --- a/docs/developer_guide.html +++ b/docs/developer_guide.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/developer_guide/architecture.html b/docs/developer_guide/architecture.html index 27631c47b..f276df8de 100644 --- a/docs/developer_guide/architecture.html +++ b/docs/developer_guide/architecture.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/developer_guide/contributing.html b/docs/developer_guide/contributing.html index 3d23c240c..bda64da9f 100644 --- a/docs/developer_guide/contributing.html +++ b/docs/developer_guide/contributing.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/developer_guide/coverage.html b/docs/developer_guide/coverage.html new file mode 100644 index 000000000..6df893bd3 --- /dev/null +++ b/docs/developer_guide/coverage.html @@ -0,0 +1,311 @@ + + + + + + Code coverage - revive compiler book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Keyboard shortcuts

+
+

Press or to navigate between chapters

+

Press S or / to search in the book

+

Press ? to show this help

+

Press Esc to hide this help

+
+
+
+
+ + + + + + + + + + + + + +
+ +
+
+ + + + + + + +
+
+

Code coverage

+

Revive measures Rust and LLVM C++ line and region coverage with cargo-llvm-cov over the same tests as make test-workspace.

+

Two ways to obtain a report:

+
    +
  1. Locally: make coverage and make coverage-llvm-report (described below).
  2. +
  3. Per PR: apply the measure code coverage label and read the bot-generated PR comment once the triggered workflow completes.
  4. +
+

Running locally

+
# Install LLVM.
+make install-llvm
+
+# Or install instrumented LLVM.
+make install-llvm-coverage
+
+# ..set LLVM_SYS_221_PREFIX to a compatible LLVM build..
+
+# Run coverage and generate revive Rust report.
+make coverage
+
+# Generate a separate LLVM C++ report if needed, if
+# instrumented LLVM was used for `make coverage`.
+make coverage-llvm-report
+
+# Print clickable links to all accumulated HTML reports detected
+# (they're grouped by timestamps) to easily view them in the browser.
+make coverage-browse
+
+

The target:

+
    +
  1. Builds and tests the workspace under cargo-llvm-cov with --ignore-run-fail so partial coverage lands even when test binaries exit non-zero.
  2. +
  3. Writes a browsable HTML report into a timestamped run directory (coverage-reports/<stamp>/revive/ or coverage-reports/<stamp>/llvm/).
  4. +
+

Resource requirements and troubleshooting

+

make coverage bakes in two defaults that keep instrumented runs tractable:

+
    +
  • It drops DWARF with CARGO_PROFILE_DEV_DEBUG=0 since coverage line data lives in the binaries’ __llvm_covmap sections.
  • +
  • It bounds profile output with LLVM_PROFILE_FILE_NAME=revive-%4m.profraw. The default pattern contains %p, writing one raw profile per process. With an instrumented LLVM this could exceed tens of gigabytes of raw profiles in a full run. The %4m merge pool makes processes merge their counters into a handful of files instead.
  • +
+

Even with those defaults, plan for:

+
    +
  • Disk space: +
      +
    • Building instrumented LLVM and running an instrumented make coverage still needs tens of gigabytes of disk space.
    • +
    +
  • +
  • LLVM link memory (make install-llvm-coverage): +
      +
    • If a link step gets OOM-killed, rerun with capped parallelism (e.g. JOBS=1) to serialize the links. The rerun resumes incrementally.
    • +
    +
  • +
  • Test-binary link memory (make coverage): +
      +
    • If a link gets OOM-killed, rerun with RUSTFLAGS="-C link-arg=-fuse-ld=lld" (or additionally with capped parallelism, e.g. CARGO_BUILD_JOBS=1). GNU ld holds every input object and the coverage mapping of the entire dependency closure in memory at once. lld links with a smaller peak.
    • +
    +
  • +
  • Test-run memory (make coverage): +
      +
    • Each concurrently running test spawns an instrumented resolc. On memory-constrained machines cap it with RUST_TEST_THREADS=4. This throttles test execution only, not compilation.
    • +
    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/docs/developer_guide/cross_compilation.html b/docs/developer_guide/cross_compilation.html index 75e1f59d2..8459ce726 100644 --- a/docs/developer_guide/cross_compilation.html +++ b/docs/developer_guide/cross_compilation.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
@@ -200,7 +200,7 @@

musl libc

diff --git a/docs/faq.html b/docs/faq.html index 2c4fd16c5..d99aacff6 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/index.html b/docs/index.html index f31e5e306..d52067a5e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/print.html b/docs/print.html index d49e68160..a1bc47959 100644 --- a/docs/print.html +++ b/docs/print.html @@ -36,10 +36,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
@@ -4819,6 +4819,68 @@

Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.

+

Code coverage

+

Revive measures Rust and LLVM C++ line and region coverage with cargo-llvm-cov over the same tests as make test-workspace.

+

Two ways to obtain a report:

+
    +
  1. Locally: make coverage and make coverage-llvm-report (described below).
  2. +
  3. Per PR: apply the measure code coverage label and read the bot-generated PR comment once the triggered workflow completes.
  4. +
+

Running locally

+
# Install LLVM.
+make install-llvm
+
+# Or install instrumented LLVM.
+make install-llvm-coverage
+
+# ..set LLVM_SYS_221_PREFIX to a compatible LLVM build..
+
+# Run coverage and generate revive Rust report.
+make coverage
+
+# Generate a separate LLVM C++ report if needed, if
+# instrumented LLVM was used for `make coverage`.
+make coverage-llvm-report
+
+# Print clickable links to all accumulated HTML reports detected
+# (they're grouped by timestamps) to easily view them in the browser.
+make coverage-browse
+
+

The target:

+
    +
  1. Builds and tests the workspace under cargo-llvm-cov with --ignore-run-fail so partial coverage lands even when test binaries exit non-zero.
  2. +
  3. Writes a browsable HTML report into a timestamped run directory (coverage-reports/<stamp>/revive/ or coverage-reports/<stamp>/llvm/).
  4. +
+

Resource requirements and troubleshooting

+

make coverage bakes in two defaults that keep instrumented runs tractable:

+
    +
  • It drops DWARF with CARGO_PROFILE_DEV_DEBUG=0 since coverage line data lives in the binaries’ __llvm_covmap sections.
  • +
  • It bounds profile output with LLVM_PROFILE_FILE_NAME=revive-%4m.profraw. The default pattern contains %p, writing one raw profile per process. With an instrumented LLVM this could exceed tens of gigabytes of raw profiles in a full run. The %4m merge pool makes processes merge their counters into a handful of files instead.
  • +
+

Even with those defaults, plan for:

+
    +
  • Disk space: +
      +
    • Building instrumented LLVM and running an instrumented make coverage still needs tens of gigabytes of disk space.
    • +
    +
  • +
  • LLVM link memory (make install-llvm-coverage): +
      +
    • If a link step gets OOM-killed, rerun with capped parallelism (e.g. JOBS=1) to serialize the links. The rerun resumes incrementally.
    • +
    +
  • +
  • Test-binary link memory (make coverage): +
      +
    • If a link gets OOM-killed, rerun with RUSTFLAGS="-C link-arg=-fuse-ld=lld" (or additionally with capped parallelism, e.g. CARGO_BUILD_JOBS=1). GNU ld holds every input object and the coverage mapping of the entire dependency closure in memory at once. lld links with a smaller peak.
    • +
    +
  • +
  • Test-run memory (make coverage): +
      +
    • Each concurrently running test spawns an instrumented resolc. On memory-constrained machines cap it with RUST_TEST_THREADS=4. This throttles test execution only, not compilation.
    • +
    +
  • +
+

Cross compilation

We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment.

The musl target is used to obtain statically linked ELF binaries for Linux.

diff --git a/docs/revive_runner.html b/docs/revive_runner.html index 1aee49afa..420b9cb9b 100644 --- a/docs/revive_runner.html +++ b/docs/revive_runner.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/roadmap.html b/docs/roadmap.html index c5d6161da..444b10002 100644 --- a/docs/roadmap.html +++ b/docs/roadmap.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/searcher-c2a407aa.js b/docs/searcher-c2a407aa.js index f92b02ab6..1c01a6af5 100644 --- a/docs/searcher-c2a407aa.js +++ b/docs/searcher-c2a407aa.js @@ -437,7 +437,7 @@ window.search = window.search || {}; if (yes) { loadSearchScript( window.path_to_searchindex_js || - path_to_root + 'searchindex-339ac392.js', + path_to_root + 'searchindex-57ec751f.js', 'mdbook-search-index'); search_wrap.classList.remove('hidden'); searchicon.setAttribute('aria-expanded', 'true'); diff --git a/docs/searchindex-339ac392.js b/docs/searchindex-339ac392.js deleted file mode 100644 index 98969dc4e..000000000 --- a/docs/searchindex-339ac392.js +++ /dev/null @@ -1 +0,0 @@ -window.search = Object.assign(window.search, JSON.parse('{"doc_urls":["welcome.html#welcome","welcome.html#target-audience","welcome.html#other-polkadot-contracts-resources","welcome.html#about","user_guide.html#resolc-user-guide","user_guide.html#revive-vs-resolc-nomenclature","user_guide/installation.html#installation","user_guide/installation.html#resolc-binary-releases","user_guide/installation.html#installing-the-solc-dependency","user_guide/installation.html#revive-npm-package","user_guide/installation.html#buidling-resolc-from-source","user_guide/cli.html#cli-usage","user_guide/cli.html#llvm-optimization-levels","user_guide/cli.html#newyork-ir-pipeline","user_guide/cli.html#stack-size","user_guide/cli.html#heap-size","user_guide/cli.html#solc","user_guide/cli.html#debug-artifacts","user_guide/cli.html#debug-info","user_guide/cli.html#deploy-time-linking","user_guide/js.html#js-npm-package","user_guide/tooling.html#tooling-integration","user_guide/tooling.html#solidity-toolkits","user_guide/tooling.html#compiler-explorer","user_guide/tooling.html#remix-ide","user_guide/std_json.html#standard-json-interface","user_guide/std_json.html#the-settingspolkavm-object","user_guide/std_json.html#settingspolkavmdebuginformation","user_guide/std_json.html#settingspolkavmnewyork","user_guide/std_json.html#the-settingspolkavmmemoryconfig-object","user_guide/std_json.html#the-settingsoptimizer-object","user_guide/std_json.html#settingsoptimizermode","user_guide/std_json.html#settingsllvmarguments","user_guide/std_json.html#the-settingsoutputselection-object","user_guide/std_json.html#the-all--wildcard","user_guide/std_json.html#the-contract-level-evm-output-selection","user_guide/differences.html#differences-to-evm","user_guide/differences.html#deploy-code-vs-runtime-code","user_guide/differences.html#solidity","user_guide/differences.html#the-6364-gas-rule","user_guide/differences.html#addresscreationcode","user_guide/differences.html#yul-functions","user_guide/differences.html#mload-mstore-msize-mcopy-memory-related-functions","user_guide/differences.html#calldataload-calldatacopy","user_guide/differences.html#codecopy","user_guide/differences.html#create-create2","user_guide/differences.html#dataoffset","user_guide/differences.html#datasize","user_guide/differences.html#revert-return","user_guide/differences.html#prevrandao-difficulty","user_guide/differences.html#pc-extcodecopy","user_guide/differences.html#blobhash-blobbasefee","user_guide/differences.html#difference-regarding-the-solc-via-ir-mode","user_guide/differences.html#example-state-variable-initialization-order-in-inheritance","user_guide/rust_libraries.html#rust-contract-libraries","revive_runner.html#revive-runner-sandbox","revive_runner.html#installation-and-usage","revive_runner.html#trace-logs","revive_runner.html#automatic-contract-instantiation","revive_runner.html#example","developer_guide.html#developer-guide","developer_guide/contributing.html#contributor-guide","developer_guide/contributing.html#getting-started","developer_guide/contributing.html#using-the-makefile","developer_guide/contributing.html#codebase-organization","developer_guide/contributing.html#contribution-rules","developer_guide/contributing.html#style-guide","developer_guide/contributing.html#ai-policy","developer_guide/architecture.html#compiler-architecture-and-internals","developer_guide/architecture.html#resolc","developer_guide/architecture.html#reproducible-contract-builds","developer_guide/architecture.html#the-revive-compiler-libraries","developer_guide/architecture.html#evm-heap-memory","developer_guide/architecture.html#the-llvm-dependency","developer_guide/architecture.html#custom-optimizations","developer_guide/newyork_optimizer.html#the-newyork-optimizer","developer_guide/newyork_optimizer.html#motivation","developer_guide/newyork_optimizer.html#pipeline-overview","developer_guide/newyork_optimizer.html#ir-design","developer_guide/newyork_optimizer.html#key-optimizations-explained","developer_guide/newyork_optimizer.html#type-narrowing","developer_guide/newyork_optimizer.html#guard-narrowing","developer_guide/newyork_optimizer.html#heap-optimization","developer_guide/newyork_optimizer.html#free-memory-pointer-range-proof","developer_guide/newyork_optimizer.html#soundness-traps-for-fmp-optimizations","developer_guide/newyork_optimizer.html#keccak256-fusion-and-folding","developer_guide/newyork_optimizer.html#compound-outlining-mapping-access","developer_guide/newyork_optimizer.html#fuzzy-function-deduplication","developer_guide/newyork_optimizer.html#revert-pattern-outlining","developer_guide/newyork_optimizer.html#outlined-helper-functions","developer_guide/newyork_optimizer.html#codesize-results","developer_guide/newyork_optimizer.html#integration-test-contracts","developer_guide/newyork_optimizer.html#openzeppelin-contracts","developer_guide/newyork_optimizer.html#development-history-and-challenges","developer_guide/newyork_optimizer.html#approaches-that-did-not-work","developer_guide/newyork_optimizer.html#known-limitations-and-future-work","developer_guide/newyork_optimizer.html#debug-output","developer_guide/newyork_optimizer.html#module-reference","developer_guide/newyork_ir.html#newyork-ir-reference","developer_guide/newyork_ir.html#how-to-read-this-reference","developer_guide/newyork_ir.html#entry-format","developer_guide/newyork_ir.html#syntax-notation","developer_guide/newyork_ir.html#operation-index","developer_guide/newyork_ir.html#type-system","developer_guide/newyork_ir.html#type","developer_guide/newyork_ir.html#bitwidth","developer_guide/newyork_ir.html#addressspace","developer_guide/newyork_ir.html#memoryregion","developer_guide/newyork_ir.html#pure-expressions-1","developer_guide/newyork_ir.html#0xhex","developer_guide/newyork_ir.html#vid","developer_guide/newyork_ir.html#add","developer_guide/newyork_ir.html#sub","developer_guide/newyork_ir.html#mul","developer_guide/newyork_ir.html#div","developer_guide/newyork_ir.html#sdiv","developer_guide/newyork_ir.html#mod","developer_guide/newyork_ir.html#smod","developer_guide/newyork_ir.html#exp","developer_guide/newyork_ir.html#and","developer_guide/newyork_ir.html#or","developer_guide/newyork_ir.html#xor","developer_guide/newyork_ir.html#shl","developer_guide/newyork_ir.html#shr","developer_guide/newyork_ir.html#sar","developer_guide/newyork_ir.html#lt","developer_guide/newyork_ir.html#gt","developer_guide/newyork_ir.html#slt","developer_guide/newyork_ir.html#sgt","developer_guide/newyork_ir.html#eq","developer_guide/newyork_ir.html#byte","developer_guide/newyork_ir.html#signextend","developer_guide/newyork_ir.html#addmod","developer_guide/newyork_ir.html#mulmod","developer_guide/newyork_ir.html#iszero","developer_guide/newyork_ir.html#not","developer_guide/newyork_ir.html#clz","developer_guide/newyork_ir.html#truncateibits","developer_guide/newyork_ir.html#zextibits","developer_guide/newyork_ir.html#sextibits","developer_guide/newyork_ir.html#keccak256","developer_guide/newyork_ir.html#keccak256_pair","developer_guide/newyork_ir.html#keccak256_single","developer_guide/newyork_ir.html#caller","developer_guide/newyork_ir.html#callvalue","developer_guide/newyork_ir.html#origin","developer_guide/newyork_ir.html#address","developer_guide/newyork_ir.html#chainid","developer_guide/newyork_ir.html#gas","developer_guide/newyork_ir.html#msize","developer_guide/newyork_ir.html#coinbase","developer_guide/newyork_ir.html#timestamp","developer_guide/newyork_ir.html#number","developer_guide/newyork_ir.html#difficulty","developer_guide/newyork_ir.html#gaslimit","developer_guide/newyork_ir.html#basefee","developer_guide/newyork_ir.html#blobbasefee","developer_guide/newyork_ir.html#blobhash","developer_guide/newyork_ir.html#blockhash","developer_guide/newyork_ir.html#selfbalance","developer_guide/newyork_ir.html#gasprice","developer_guide/newyork_ir.html#calldataload","developer_guide/newyork_ir.html#calldatasize","developer_guide/newyork_ir.html#returndatasize","developer_guide/newyork_ir.html#codesize","developer_guide/newyork_ir.html#extcodesize","developer_guide/newyork_ir.html#extcodehash","developer_guide/newyork_ir.html#balance","developer_guide/newyork_ir.html#mload","developer_guide/newyork_ir.html#sload","developer_guide/newyork_ir.html#tload","developer_guide/newyork_ir.html#mapping_sload","developer_guide/newyork_ir.html#dataoffset","developer_guide/newyork_ir.html#datasize","developer_guide/newyork_ir.html#loadimmutable","developer_guide/newyork_ir.html#linkersymbol","developer_guide/newyork_ir.html#func_name","developer_guide/newyork_ir.html#memory-and-storage-writes-1","developer_guide/newyork_ir.html#mstore","developer_guide/newyork_ir.html#mstore8","developer_guide/newyork_ir.html#mcopy","developer_guide/newyork_ir.html#sstore","developer_guide/newyork_ir.html#tstore","developer_guide/newyork_ir.html#mapping_sstore","developer_guide/newyork_ir.html#bulk-copies-1","developer_guide/newyork_ir.html#codecopy","developer_guide/newyork_ir.html#extcodecopy","developer_guide/newyork_ir.html#returndatacopy","developer_guide/newyork_ir.html#datacopy","developer_guide/newyork_ir.html#calldatacopy","developer_guide/newyork_ir.html#bindings-and-wrappers-1","developer_guide/newyork_ir.html#let","developer_guide/newyork_ir.html#expression-statement","developer_guide/newyork_ir.html#setimmutable","developer_guide/newyork_ir.html#structured-control-flow-1","developer_guide/newyork_ir.html#if","developer_guide/newyork_ir.html#switch","developer_guide/newyork_ir.html#for","developer_guide/newyork_ir.html#break","developer_guide/newyork_ir.html#continue","developer_guide/newyork_ir.html#leave","developer_guide/newyork_ir.html#nested-block","developer_guide/newyork_ir.html#external-interaction-1","developer_guide/newyork_ir.html#call","developer_guide/newyork_ir.html#callcode","developer_guide/newyork_ir.html#delegatecall","developer_guide/newyork_ir.html#staticcall","developer_guide/newyork_ir.html#create","developer_guide/newyork_ir.html#create2","developer_guide/newyork_ir.html#logn","developer_guide/newyork_ir.html#termination-1","developer_guide/newyork_ir.html#return","developer_guide/newyork_ir.html#revert","developer_guide/newyork_ir.html#stop","developer_guide/newyork_ir.html#invalid","developer_guide/newyork_ir.html#selfdestruct","developer_guide/newyork_ir.html#panic_revert","developer_guide/newyork_ir.html#error_string_revert","developer_guide/newyork_ir.html#custom_error_revert","developer_guide/target.html#pvm-and-the-pallet-revive-runtime-target","developer_guide/target.html#target-cpu-configuration","developer_guide/target.html#why-pvm","developer_guide/target.html#host-environment-pallet-revive","developer_guide/testing.html#testing-strategy","developer_guide/testing.html#bug-compatibility-with-ethereum-solidity","developer_guide/testing.html#differential-integration-tests","developer_guide/testing.html#the-differential-testing-utility","developer_guide/cross_compilation.html#cross-compilation","developer_guide/cross_compilation.html#wasm-via-emscripten","developer_guide/cross_compilation.html#musl-libc","faq.html#faq","faq.html#what-evm-version-do-you-support","faq.html#is-inline-assembly-supported","faq.html#do-you-support-opcode-xy","faq.html#in-what-solidity-version-should-i-write-my-dapp","faq.html#tool-xy-says-the-contract-size-is-larger-than-24kb-and-will-fail-to-deploy","faq.html#is-resolc-a-drop-in-replacement-for-solc","roadmap.html#vision-and-roadmap","roadmap.html#roadmap"],"index":{"documentStore":{"docInfo":{"0":{"body":74,"breadcrumbs":2,"title":1},"1":{"body":22,"breadcrumbs":3,"title":2},"10":{"body":6,"breadcrumbs":7,"title":3},"100":{"body":174,"breadcrumbs":8,"title":2},"101":{"body":235,"breadcrumbs":8,"title":2},"102":{"body":133,"breadcrumbs":8,"title":2},"103":{"body":25,"breadcrumbs":8,"title":2},"104":{"body":36,"breadcrumbs":7,"title":1},"105":{"body":91,"breadcrumbs":7,"title":1},"106":{"body":61,"breadcrumbs":7,"title":1},"107":{"body":80,"breadcrumbs":7,"title":1},"108":{"body":42,"breadcrumbs":8,"title":2},"109":{"body":78,"breadcrumbs":7,"title":1},"11":{"body":33,"breadcrumbs":8,"title":2},"110":{"body":56,"breadcrumbs":7,"title":1},"111":{"body":51,"breadcrumbs":7,"title":1},"112":{"body":47,"breadcrumbs":7,"title":1},"113":{"body":47,"breadcrumbs":7,"title":1},"114":{"body":49,"breadcrumbs":7,"title":1},"115":{"body":58,"breadcrumbs":7,"title":1},"116":{"body":40,"breadcrumbs":7,"title":1},"117":{"body":48,"breadcrumbs":7,"title":1},"118":{"body":51,"breadcrumbs":7,"title":1},"119":{"body":59,"breadcrumbs":6,"title":0},"12":{"body":59,"breadcrumbs":9,"title":3},"120":{"body":30,"breadcrumbs":6,"title":0},"121":{"body":31,"breadcrumbs":7,"title":1},"122":{"body":53,"breadcrumbs":7,"title":1},"123":{"body":65,"breadcrumbs":7,"title":1},"124":{"body":73,"breadcrumbs":7,"title":1},"125":{"body":41,"breadcrumbs":7,"title":1},"126":{"body":41,"breadcrumbs":7,"title":1},"127":{"body":40,"breadcrumbs":7,"title":1},"128":{"body":40,"breadcrumbs":7,"title":1},"129":{"body":38,"breadcrumbs":7,"title":1},"13":{"body":42,"breadcrumbs":9,"title":3},"130":{"body":59,"breadcrumbs":7,"title":1},"131":{"body":76,"breadcrumbs":7,"title":1},"132":{"body":57,"breadcrumbs":7,"title":1},"133":{"body":57,"breadcrumbs":7,"title":1},"134":{"body":33,"breadcrumbs":7,"title":1},"135":{"body":38,"breadcrumbs":6,"title":0},"136":{"body":61,"breadcrumbs":7,"title":1},"137":{"body":67,"breadcrumbs":7,"title":1},"138":{"body":45,"breadcrumbs":7,"title":1},"139":{"body":66,"breadcrumbs":7,"title":1},"14":{"body":62,"breadcrumbs":8,"title":2},"140":{"body":83,"breadcrumbs":7,"title":1},"141":{"body":68,"breadcrumbs":7,"title":1},"142":{"body":42,"breadcrumbs":7,"title":1},"143":{"body":24,"breadcrumbs":7,"title":1},"144":{"body":22,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":24,"breadcrumbs":7,"title":1},"147":{"body":22,"breadcrumbs":7,"title":1},"148":{"body":42,"breadcrumbs":7,"title":1},"149":{"body":54,"breadcrumbs":7,"title":1},"15":{"body":75,"breadcrumbs":8,"title":2},"150":{"body":23,"breadcrumbs":7,"title":1},"151":{"body":23,"breadcrumbs":7,"title":1},"152":{"body":21,"breadcrumbs":7,"title":1},"153":{"body":27,"breadcrumbs":7,"title":1},"154":{"body":21,"breadcrumbs":7,"title":1},"155":{"body":25,"breadcrumbs":7,"title":1},"156":{"body":26,"breadcrumbs":7,"title":1},"157":{"body":37,"breadcrumbs":7,"title":1},"158":{"body":42,"breadcrumbs":7,"title":1},"159":{"body":26,"breadcrumbs":7,"title":1},"16":{"body":10,"breadcrumbs":7,"title":1},"160":{"body":22,"breadcrumbs":7,"title":1},"161":{"body":40,"breadcrumbs":7,"title":1},"162":{"body":23,"breadcrumbs":7,"title":1},"163":{"body":42,"breadcrumbs":7,"title":1},"164":{"body":23,"breadcrumbs":7,"title":1},"165":{"body":41,"breadcrumbs":7,"title":1},"166":{"body":41,"breadcrumbs":7,"title":1},"167":{"body":42,"breadcrumbs":7,"title":1},"168":{"body":101,"breadcrumbs":7,"title":1},"169":{"body":84,"breadcrumbs":7,"title":1},"17":{"body":43,"breadcrumbs":8,"title":2},"170":{"body":49,"breadcrumbs":7,"title":1},"171":{"body":98,"breadcrumbs":7,"title":1},"172":{"body":54,"breadcrumbs":7,"title":1},"173":{"body":44,"breadcrumbs":7,"title":1},"174":{"body":47,"breadcrumbs":7,"title":1},"175":{"body":43,"breadcrumbs":7,"title":1},"176":{"body":134,"breadcrumbs":7,"title":1},"177":{"body":32,"breadcrumbs":9,"title":3},"178":{"body":110,"breadcrumbs":7,"title":1},"179":{"body":101,"breadcrumbs":7,"title":1},"18":{"body":15,"breadcrumbs":8,"title":2},"180":{"body":95,"breadcrumbs":7,"title":1},"181":{"body":107,"breadcrumbs":7,"title":1},"182":{"body":88,"breadcrumbs":7,"title":1},"183":{"body":112,"breadcrumbs":7,"title":1},"184":{"body":34,"breadcrumbs":8,"title":2},"185":{"body":63,"breadcrumbs":7,"title":1},"186":{"body":81,"breadcrumbs":7,"title":1},"187":{"body":80,"breadcrumbs":7,"title":1},"188":{"body":69,"breadcrumbs":7,"title":1},"189":{"body":63,"breadcrumbs":7,"title":1},"19":{"body":236,"breadcrumbs":9,"title":3},"190":{"body":25,"breadcrumbs":8,"title":2},"191":{"body":98,"breadcrumbs":6,"title":0},"192":{"body":80,"breadcrumbs":8,"title":2},"193":{"body":58,"breadcrumbs":7,"title":1},"194":{"body":35,"breadcrumbs":9,"title":3},"195":{"body":119,"breadcrumbs":6,"title":0},"196":{"body":107,"breadcrumbs":7,"title":1},"197":{"body":211,"breadcrumbs":6,"title":0},"198":{"body":47,"breadcrumbs":7,"title":1},"199":{"body":45,"breadcrumbs":7,"title":1},"2":{"body":7,"breadcrumbs":4,"title":3},"20":{"body":31,"breadcrumbs":9,"title":3},"200":{"body":73,"breadcrumbs":7,"title":1},"201":{"body":48,"breadcrumbs":8,"title":2},"202":{"body":20,"breadcrumbs":8,"title":2},"203":{"body":147,"breadcrumbs":7,"title":1},"204":{"body":68,"breadcrumbs":7,"title":1},"205":{"body":74,"breadcrumbs":7,"title":1},"206":{"body":70,"breadcrumbs":7,"title":1},"207":{"body":85,"breadcrumbs":7,"title":1},"208":{"body":61,"breadcrumbs":7,"title":1},"209":{"body":94,"breadcrumbs":7,"title":1},"21":{"body":9,"breadcrumbs":7,"title":2},"210":{"body":30,"breadcrumbs":7,"title":1},"211":{"body":62,"breadcrumbs":7,"title":1},"212":{"body":68,"breadcrumbs":7,"title":1},"213":{"body":28,"breadcrumbs":7,"title":1},"214":{"body":33,"breadcrumbs":7,"title":1},"215":{"body":55,"breadcrumbs":7,"title":1},"216":{"body":89,"breadcrumbs":7,"title":1},"217":{"body":100,"breadcrumbs":7,"title":1},"218":{"body":91,"breadcrumbs":7,"title":1},"219":{"body":9,"breadcrumbs":12,"title":5},"22":{"body":14,"breadcrumbs":7,"title":2},"220":{"body":14,"breadcrumbs":10,"title":3},"221":{"body":199,"breadcrumbs":8,"title":1},"222":{"body":34,"breadcrumbs":11,"title":4},"223":{"body":63,"breadcrumbs":6,"title":2},"224":{"body":34,"breadcrumbs":8,"title":4},"225":{"body":187,"breadcrumbs":7,"title":3},"226":{"body":73,"breadcrumbs":7,"title":3},"227":{"body":19,"breadcrumbs":6,"title":2},"228":{"body":69,"breadcrumbs":7,"title":3},"229":{"body":12,"breadcrumbs":6,"title":2},"23":{"body":11,"breadcrumbs":7,"title":2},"230":{"body":0,"breadcrumbs":2,"title":1},"231":{"body":12,"breadcrumbs":4,"title":3},"232":{"body":10,"breadcrumbs":4,"title":3},"233":{"body":4,"breadcrumbs":4,"title":3},"234":{"body":25,"breadcrumbs":5,"title":4},"235":{"body":13,"breadcrumbs":9,"title":8},"236":{"body":9,"breadcrumbs":5,"title":4},"237":{"body":66,"breadcrumbs":4,"title":2},"238":{"body":49,"breadcrumbs":3,"title":1},"24":{"body":14,"breadcrumbs":7,"title":2},"25":{"body":15,"breadcrumbs":9,"title":3},"26":{"body":6,"breadcrumbs":8,"title":2},"27":{"body":9,"breadcrumbs":7,"title":1},"28":{"body":31,"breadcrumbs":7,"title":1},"29":{"body":31,"breadcrumbs":8,"title":2},"3":{"body":15,"breadcrumbs":1,"title":0},"30":{"body":8,"breadcrumbs":8,"title":2},"31":{"body":10,"breadcrumbs":7,"title":1},"32":{"body":13,"breadcrumbs":7,"title":1},"33":{"body":4,"breadcrumbs":8,"title":2},"34":{"body":63,"breadcrumbs":7,"title":1},"35":{"body":83,"breadcrumbs":11,"title":5},"36":{"body":23,"breadcrumbs":7,"title":2},"37":{"body":41,"breadcrumbs":10,"title":5},"38":{"body":6,"breadcrumbs":6,"title":1},"39":{"body":18,"breadcrumbs":8,"title":3},"4":{"body":43,"breadcrumbs":6,"title":3},"40":{"body":5,"breadcrumbs":6,"title":1},"41":{"body":58,"breadcrumbs":7,"title":2},"42":{"body":64,"breadcrumbs":12,"title":7},"43":{"body":16,"breadcrumbs":7,"title":2},"44":{"body":3,"breadcrumbs":6,"title":1},"45":{"body":101,"breadcrumbs":7,"title":2},"46":{"body":3,"breadcrumbs":6,"title":1},"47":{"body":7,"breadcrumbs":6,"title":1},"48":{"body":8,"breadcrumbs":7,"title":2},"49":{"body":4,"breadcrumbs":7,"title":2},"5":{"body":52,"breadcrumbs":7,"title":4},"50":{"body":10,"breadcrumbs":7,"title":2},"51":{"body":20,"breadcrumbs":7,"title":2},"52":{"body":24,"breadcrumbs":11,"title":6},"53":{"body":57,"breadcrumbs":11,"title":6},"54":{"body":167,"breadcrumbs":9,"title":3},"55":{"body":36,"breadcrumbs":6,"title":3},"56":{"body":21,"breadcrumbs":5,"title":2},"57":{"body":38,"breadcrumbs":5,"title":2},"58":{"body":15,"breadcrumbs":6,"title":3},"59":{"body":120,"breadcrumbs":4,"title":1},"6":{"body":24,"breadcrumbs":5,"title":1},"60":{"body":11,"breadcrumbs":4,"title":2},"61":{"body":11,"breadcrumbs":6,"title":2},"62":{"body":8,"breadcrumbs":6,"title":2},"63":{"body":39,"breadcrumbs":6,"title":2},"64":{"body":85,"breadcrumbs":6,"title":2},"65":{"body":44,"breadcrumbs":6,"title":2},"66":{"body":107,"breadcrumbs":6,"title":2},"67":{"body":112,"breadcrumbs":6,"title":2},"68":{"body":58,"breadcrumbs":7,"title":3},"69":{"body":55,"breadcrumbs":5,"title":1},"7":{"body":21,"breadcrumbs":7,"title":3},"70":{"body":76,"breadcrumbs":7,"title":3},"71":{"body":65,"breadcrumbs":7,"title":3},"72":{"body":57,"breadcrumbs":7,"title":3},"73":{"body":69,"breadcrumbs":6,"title":2},"74":{"body":49,"breadcrumbs":6,"title":2},"75":{"body":44,"breadcrumbs":6,"title":2},"76":{"body":84,"breadcrumbs":5,"title":1},"77":{"body":372,"breadcrumbs":6,"title":2},"78":{"body":116,"breadcrumbs":6,"title":2},"79":{"body":0,"breadcrumbs":7,"title":3},"8":{"body":13,"breadcrumbs":7,"title":3},"80":{"body":182,"breadcrumbs":6,"title":2},"81":{"body":72,"breadcrumbs":6,"title":2},"82":{"body":118,"breadcrumbs":6,"title":2},"83":{"body":147,"breadcrumbs":9,"title":5},"84":{"body":349,"breadcrumbs":8,"title":4},"85":{"body":148,"breadcrumbs":7,"title":3},"86":{"body":43,"breadcrumbs":8,"title":4},"87":{"body":32,"breadcrumbs":7,"title":3},"88":{"body":56,"breadcrumbs":7,"title":3},"89":{"body":84,"breadcrumbs":7,"title":3},"9":{"body":5,"breadcrumbs":7,"title":3},"90":{"body":0,"breadcrumbs":6,"title":2},"91":{"body":67,"breadcrumbs":7,"title":3},"92":{"body":79,"breadcrumbs":6,"title":2},"93":{"body":216,"breadcrumbs":7,"title":3},"94":{"body":137,"breadcrumbs":6,"title":2},"95":{"body":137,"breadcrumbs":8,"title":4},"96":{"body":67,"breadcrumbs":6,"title":2},"97":{"body":139,"breadcrumbs":6,"title":2},"98":{"body":16,"breadcrumbs":9,"title":3},"99":{"body":74,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Hello and a warm welcome to the revive Solidity compiler book! Warning Solidity on PVM is running on the pallet-revive runtime. This introduces observable semantic differences in comparison with the EVM. Study the differences section carefully. Ignoring these differences may lead to defunct contracts. Notable examples: The 63/64 gas rule isn’t implemented in the pallet (introduces potential DoS vector when calling other contracts) Contract instantiation works differently (by hash instead of by code) The gas model implemented by pallet-revive differs from Ethereum The heap size is fixed instead of gas-metered and there’s a fixed amount of stack size (contracts working fine on EVM may trap on PVM)","breadcrumbs":"Welcome » Welcome","id":"0","title":"Welcome"},"1":{"body":"Solidity dApp developers should read the user guide. Solidity on PolkaVM introduces important differences to EVM which should be well understood. Contributors will find the developer guide helpful for getting up to speed.","breadcrumbs":"Welcome » Target audience","id":"1","title":"Target audience"},"10":{"body":"Please follow the build instructions in the revive README.md.","breadcrumbs":"resolc user guide » Installation » Buidling resolc from source","id":"10","title":"Buidling resolc from source"},"100":{"body":"Each operation entry has the same shape: Field What it shows Heading The printed operation name (e.g. mstore) followed by the Expression or Statement variant it corresponds to in ir.rs. Description A short prose summary of what the operation does and any semantic notes worth knowing before reading the rest of the entry. Syntax The literal printer output, including any optional debug annotations (region tags, static-slot comments). Anything inside /* ... */ is a debug-only annotation and is not part of the operation itself. Example A minimal printed snippet, using the printer’s actual v0/ v1/… naming. Operands One row per input or structural participant in the printed syntax. Value operands list the narrowest type the operation guarantees (default i256; narrower widths only appear when type inference has narrowed an upstream definition). Vector-of-operands fields show Vec<…> as the type. Non-value participants such as nested regions are listed with an em-dash type to mark them as structural rather than as operands. Result and purity The type the operation produces (or none for statements that bind no value), followed by a purity label, either Pure or Effectful. Pure operations may be reordered, deduplicated, or eliminated by the simplifier; effectful ones may not. Effectful entries may carry a parenthetical describing the nature of the side effect when informative (e.g. “control flow”, “terminator”, or a note about revert/trap behavior). Annotations Operation-specific fields the printer surfaces as /* ... */ comments in the dump (region tag for memory ops, static-slot hint for storage ops, type suffix for non-default widths). Listed here as a table of source field → printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Entry format","id":"100","title":"Entry format"},"101":{"body":"Syntax templates in each entry use the following conventions: Notation Meaning add, mload, if, else, case, let, yield, … Literal printer tokens: bare lowercase identifiers and keywords that the printer emits verbatim. $offset, $value, $key, $lhs, $rhs, … Role names ( $-prefixed): placeholders for SSA value references the printer renders as v followed by a decimal id ( v0, v1, …). , , , , , , , , … Metavariables: stand for compile-time fields (type tags, hex values, identifier strings, integer counts), not SSA values. The concrete values they take are enumerated in the Annotations section of each entry or in the type system reference. […] Optional parts. Anything inside the brackets may or may not appear in any given dump, depending on the conditions described in the operation’s Annotations section. [: ] Optional type suffix on a value reference. Suppressed when the value’s type is the default i256 integer; present otherwise ( : i32, : ptr, …). /* … */ Debug-only annotations the printer attaches to certain operations (memory region tag, static-slot hint, etc.). … Repetition: “more entries of the same shape.” Used in vector operand lists ( $arg_0, $arg_1, …) and in multi-line block bodies ( { … }). For instance, this template: let $result[: ] := and($lhs[: ], $rhs[: ]) prints as: let v2: i8 := and(v0, v1: i8) $result rendered as v2 with an i8 type suffix, $lhs as v0 at the default i256 (type suffix omitted), and $rhs as v1 with an i8 type suffix. Note A value’s printed width is use-driven. Type inference assigns each value a forward width from its definition, then widens it to satisfy its uses. The type suffix shown for a value in an example (such as i8) is therefore only illustrative — a short example may not show the uses that determine it, and the same operation can appear with a wider suffix, or none (it is omitted for the default i256), in another program. For instance, a value used as a memory offset widens to i64; as an address (a call target, extcodesize) to i160; stored as a full word (an mstore/ sstore value) to i256; and an add/ mul operand up to the i64 register width.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Syntax notation","id":"101","title":"Syntax notation"},"102":{"body":"Pure expressions Constants and variables 0x v Arithmetic add sub mul div sdiv mod smod exp and or xor shl shr sar lt gt slt sgt eq byte signextend addmod mulmod iszero not clz Bit-width conversions truncate> zext> sext> Hashing keccak256 keccak256_pair keccak256_single Environment reads caller callvalue origin address chainid gas msize coinbase timestamp number difficulty gaslimit basefee blobbasefee blobhash blockhash selfbalance gasprice Calldata, returndata, and code calldataload calldatasize returndatasize codesize extcodesize extcodehash balance Memory and storage loads mload sload tload mapping_sload Linker dataoffset datasize loadimmutable linkersymbol Function call Memory and storage writes mstore mstore8 mcopy sstore tstore mapping_sstore Bulk copies codecopy extcodecopy returndatacopy datacopy calldatacopy Bindings and wrappers let expression statement setimmutable Structured control flow if switch for break continue leave nested block External interaction call callcode delegatecall staticcall create create2 log Termination return revert stop invalid selfdestruct panic_revert error_string_revert custom_error_revert","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Operation index","id":"102","title":"Operation index"},"103":{"body":"Every value in the IR carries a Type. The operation entries below refer to widths ( i1… i256), address spaces ( ptr, etc.), and memory regions ( scratch, etc.) by their printed form; this section is the reference for those names.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type system","id":"103","title":"Type system"},"104":{"body":"The umbrella enum, with these variants: Variant Printed as Description Int(BitWidth) i1, i8, …, i256 An integer at one of the BitWidth widths. Ptr(AddressSpace) ptr, ptr, ptr, ptr A pointer tagged with its address space; see AddressSpace. Void void Unit type. Used for statements that produce no value and for void-returning functions.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type","id":"104","title":"Type"},"105":{"body":"The rungs of integer width. Newly minted values default to I256; type inference narrows them down to one of the lower rungs when it can prove the upper bits are zero or unused. Variant Printed as Typical use I1 i1 Boolean. Result type of every comparison and iszero. I8 i8 Byte values. The narrowest meaningful integer. I32 i32 PolkaVM pointer width (XLEN); minimum width for function parameters under the rv64e ABI. I64 i64 PolkaVM native register width; most narrowed values land here. I128 i128 Two registers; arithmetic that overflows i64 but doesn’t need full 256-bit emulation. I160 i160 Ethereum addresses; result of caller, origin, mapping keys. I256 i256 EVM word width. The default and conservative ceiling.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » BitWidth","id":"105","title":"BitWidth"},"106":{"body":"The address space a pointer points into. Carried on every Ptr value so the codegen can lower loads and stores without a separate alias-analysis pass. Variant Printed as Points into Endianness Heap ptr Emulated EVM linear memory (the simulated mload/ mstore region). Big-endian (by EVM contract). Stack ptr Native PolkaVM stack allocations. Little-endian (no swap). Storage ptr Contract storage; key/value with 256-bit slots. Big-endian on the wire. Code ptr Read-only code/data segment. Big-endian.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » AddressSpace","id":"106","title":"AddressSpace"},"107":{"body":"A refinement carried by every memory load and store on top of AddressSpace::Heap. The tag tells later passes what kind of heap address an offset is hitting, which drives both free-memory-pointer propagation and byte-swap elimination. Variant Address range Printed as Meaning Scratch 0x00– 0x3f /* scratch */ EVM scratch space; safe to touch without consulting the free memory pointer. FreePointerSlot exactly 0x40 /* free_ptr */ Slot that stores the free memory pointer itself. Dynamic 0x80 and above /* dynamic */ Real heap allocations. Unknown everything else (constants in 0x41– 0x7f, plus all non-constant offsets) (suppressed) Conservative fallback used when the offset isn’t a constant or doesn’t slot cleanly.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » MemoryRegion","id":"107","title":"MemoryRegion"},"108":{"body":"Pure expressions produce values without side effects. The simplifier may freely reorder, deduplicate, and eliminate them. They appear on the right-hand side of a let binding, or as operands of other expressions and effectful statements; the operand positions accept SSA value references only, so any pure expression that is consumed elsewhere is first bound by a let. Examples in this section wrap each expression in a let v := … to give it somewhere to land.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Pure expressions","id":"108","title":"Pure expressions"},"109":{"body":"( Expression::Literal) Description A compile-time constant value with a declared type. New literals minted by the translator default to Int(I256); passes that synthesize constants at narrower widths (e.g. a one-bit boolean from a constant comparison) attach the narrower type directly. Syntax 0x[: ] Example let v0: i8 := 0x2a\\nlet v1: i1 := 0x1 // boolean true\\nlet v2: i64 := 0x80 Operands None — literals are leaves. Result and purity Result Purity Same as the literal’s value_type Pure Annotations Source field Printed as value: BigUint 0x in the syntax position (not a comment annotation; it is the expression itself) value_type: Type : suffix when value_type is not the default Int(I256); suppressed otherwise","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » 0x","id":"109","title":"0x"},"11":{"body":"We aim to keep the resolc CLI usage close to solc. There are a few things and options worthwhile to know about in resolc which do not exist in the Ethereum world. This chapter explains those in more detail than the CLI help message. Tip For the complete help about CLI options, please see resolc --help.","breadcrumbs":"resolc user guide » Command Line Interface » CLI usage","id":"11","title":"CLI usage"},"110":{"body":"( Expression::Var) Description A reference to an existing SSA value, used as the entire right-hand side of a let. In a typical dump this is rare because the simplifier collapses let v := v into the consumers of v via copy propagation; expect to see it only in dumps taken before simplification has run. Syntax v Example let v5 := v3 // copy; usually eliminated by simplify Operands None — the expression is the value reference itself. Result and purity Result Purity Same as the referenced value’s type Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » v","id":"110","title":"v"},"111":{"body":"( Expression::Binary with BinaryOperation::Add) Description Modular addition. Wraps on overflow; per EVM, the result is (lhs + rhs) mod 2^N where N is the operand width. Syntax add($lhs[: ], $rhs[: ]) Example let v2 := add(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity widen_by_one(max(width(lhs), width(rhs))) — one tier above the wider operand to account for the carry bit Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » add","id":"111","title":"add"},"112":{"body":"( Expression::Binary with BinaryOperation::Sub) Description Modular subtraction. Wraps on underflow; the result is (lhs - rhs) mod 2^256 regardless of operand widths. Syntax sub($lhs[: ], $rhs[: ]) Example let v2 := sub(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i256 — conservative; underflow on narrower operands could borrow into upper bits Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sub","id":"112","title":"sub"},"113":{"body":"( Expression::Binary with BinaryOperation::Mul) Description Modular multiplication. The result is (lhs * rhs) mod 2^256. Syntax mul($lhs[: ], $rhs[: ]) Example let v2 := mul(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity double_width(max(width(lhs), width(rhs))) — the tier holding twice the wider operand’s bits (skipping i160 at the i128 → i256 transition) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mul","id":"113","title":"mul"},"114":{"body":"( Expression::Binary with BinaryOperation::Div) Description Unsigned integer division. Per EVM, div(x, 0) = 0 (no trap on division by zero). Syntax div($lhs[: ], $rhs[: ]) Example let v2 := div(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields a result of 0, not a trap. Result and purity Result Purity width(lhs) — the quotient cannot exceed the dividend Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » div","id":"114","title":"div"},"115":{"body":"( Expression::Binary with BinaryOperation::SDiv) Description Signed two’s-complement integer division. Per EVM, sdiv(x, 0) = 0; quotient is truncated toward zero. Syntax sdiv($lhs[: ], $rhs[: ]) Example let v2 := sdiv(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity max(width(lhs), width(rhs)) — a negative divisor can push the result to full width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sdiv","id":"115","title":"sdiv"},"116":{"body":"( Expression::Binary with BinaryOperation::Mod) Description Unsigned modulo. Per EVM, mod(x, 0) = 0. Syntax mod($lhs[: ], $rhs[: ]) Example let v2 := mod(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mod","id":"116","title":"mod"},"117":{"body":"( Expression::Binary with BinaryOperation::SMod) Description Signed modulo. Per EVM, smod(x, 0) = 0; the result takes the sign of the dividend. Syntax smod($lhs[: ], $rhs[: ]) Example let v2 := smod(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » smod","id":"117","title":"smod"},"118":{"body":"( Expression::Binary with BinaryOperation::Exp) Description Modular exponentiation: (base ^ exponent) mod 2^256. The most expensive arithmetic opcode in EVM (variable gas cost proportional to the byte length of exponent). Syntax exp($base[: ], $exponent[: ]) Example let v2 := exp(v0, v1) Operands Name Type Notes base i256 Base. exponent i256 Exponent. Result and purity Result Purity i256 — conservative; exponentiation can fill any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » exp","id":"118","title":"exp"},"119":{"body":"( Expression::Binary with BinaryOperation::And) Description Bitwise AND. The common idiom for type narrowing: a constant mask on the right lets forward analysis pick up a tight result width. Syntax and($lhs[: ], $rhs[: ]) Example let v2 := and(v0, v1)\\nlet v3: i8 := 0xff\\nlet v4: i8 := and(v0, v3: i8) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity min(width(lhs), width(rhs)) — AND can only clear bits, so the result fits in the narrower operand Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » and","id":"119","title":"and"},"12":{"body":"-O, --optimization resolc exposes the optimization level setting for the LLVM backend. The performance and size of compiled contracts varies widely between different optimization levels. (This is independent of --newyork which selects the IR lowering pipeline.) Valid levels are the following: 0: No optimizations are applied. 1: Basic optimizations for execution time. 2: Advanced optimizations for execution time. 3: Aggressive optimizations for execution time. s: Optimize for code size. z: Aggressively optimize for code size. By default, -Oz is applied.","breadcrumbs":"resolc user guide » Command Line Interface » LLVM optimization levels","id":"12","title":"LLVM optimization levels"},"120":{"body":"( Expression::Binary with BinaryOperation::Or) Description Bitwise OR. Syntax or($lhs[: ], $rhs[: ]) Example let v2 := or(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » or","id":"120","title":"or"},"121":{"body":"( Expression::Binary with BinaryOperation::Xor) Description Bitwise XOR. Syntax xor($lhs[: ], $rhs[: ]) Example let v2 := xor(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » xor","id":"121","title":"xor"},"122":{"body":"( Expression::Binary with BinaryOperation::Shl) Description Logical left shift. Operand order follows EVM: shl(shift, value) computes value << shift. Shifts ≥ 256 produce 0. Syntax shl($shift[: ], $value[: ]) Example let v2 := shl(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity i256 — conservative; bits may shift into any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shl","id":"122","title":"shl"},"123":{"body":"( Expression::Binary with BinaryOperation::Shr) Description Logical right shift. Operand order follows EVM: shr(shift, value) computes value >> shift with zero-fill from the left. Shifts ≥ 256 produce 0. Syntax shr($shift[: ], $value[: ]) Example let v2 := shr(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity If shift is a known constant k: tier holding 256 - k bits (or i1 for k ≥ 256). Otherwise: width(value). Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shr","id":"123","title":"shr"},"124":{"body":"( Expression::Binary with BinaryOperation::Sar) Description Arithmetic (signed) right shift. Operand order follows EVM: sar(shift, value) shifts value right by shift bits, preserving the sign bit. Shifts ≥ 256 saturate to 0 for non-negative values and to -1 (all-ones) for negative values. Syntax sar($shift[: ], $value[: ]) Example let v2 := sar(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift, treated as signed. Result and purity Result Purity width(value) — unlike shr, sign-extension means a constant shift cannot narrow the result Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sar","id":"124","title":"sar"},"125":{"body":"( Expression::Binary with BinaryOperation::Lt) Description Unsigned less-than comparison. Returns 1 if lhs < rhs, else 0. Syntax lt($lhs[: ], $rhs[: ]) Example let v2: i1 := lt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » lt","id":"125","title":"lt"},"126":{"body":"( Expression::Binary with BinaryOperation::Gt) Description Unsigned greater-than comparison. Returns 1 if lhs > rhs, else 0. Syntax gt($lhs[: ], $rhs[: ]) Example let v2: i1 := gt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gt","id":"126","title":"gt"},"127":{"body":"( Expression::Binary with BinaryOperation::Slt) Description Signed less-than comparison. Operands are treated as two’s complement. Syntax slt($lhs[: ], $rhs[: ]) Example let v2: i1 := slt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » slt","id":"127","title":"slt"},"128":{"body":"( Expression::Binary with BinaryOperation::Sgt) Description Signed greater-than comparison. Operands are treated as two’s complement. Syntax sgt($lhs[: ], $rhs[: ]) Example let v2: i1 := sgt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sgt","id":"128","title":"sgt"},"129":{"body":"( Expression::Binary with BinaryOperation::Eq) Description Equality comparison. Returns 1 if lhs == rhs, else 0. Signedness is irrelevant. Syntax eq($lhs[: ], $rhs[: ]) Example let v2: i1 := eq(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » eq","id":"129","title":"eq"},"13":{"body":"--newyork Enables the newyork optimizer to reduced compiled contract code size, by routing Yul lowering through the experimental newyork IR pipeline instead of the standard Yul-to-LLVM path. Composes with --yul, --combined-json, and the default Solidity mode. In standard JSON mode this flag is rejected; enable the pipeline via the settings.polkavm.newyork input field instead. Off by default.","breadcrumbs":"resolc user guide » Command Line Interface » newyork IR pipeline","id":"13","title":"newyork IR pipeline"},"130":{"body":"( Expression::Binary with BinaryOperation::Byte) Description Extract a single byte from a 256-bit word. byte(i, x) returns the i-th byte of x with byte 0 being the most significant. If i ≥ 32, the result is 0. Syntax byte($index[: ], $word[: ]) Example let v2: i8 := byte(v0, v1) Operands Name Type Notes index i256 Byte position; 0 = most significant byte. Values ≥ 32 yield 0. word i256 Source word. Result and purity Result Purity i8 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » byte","id":"130","title":"byte"},"131":{"body":"( Expression::Binary with BinaryOperation::SignExtend) Description Sign-extend an integer from a byte position. Per EVM, signextend(b, x) treats byte b of x as the most significant byte of a smaller signed integer and extends its sign through the upper bytes. Syntax signextend($byte_position[: ], $value[: ]) Example let v2 := signextend(v0, v1) Operands Name Type Notes byte_position i256 Byte position of the sign byte (0–31). value i256 Source value. Result and purity Result Purity i256 — the extended value occupies the full word Pure Annotations The width-targeted sign-extension primitive sext> ( Expression::SignExtendTo) is a separate operation; see the bit-width conversions section.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » signextend","id":"131","title":"signextend"},"132":{"body":"( Expression::Ternary with BinaryOperation::AddMod) Description Ternary modular addition: (a + b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax addmod($a[: ], $b[: ], $n[: ]) Example let v3 := addmod(v0, v1, v2) Operands Name Type Notes a i256 First addend. b i256 Second addend. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » addmod","id":"132","title":"addmod"},"133":{"body":"( Expression::Ternary with BinaryOperation::MulMod) Description Ternary modular multiplication: (a * b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax mulmod($a[: ], $b[: ], $n[: ]) Example let v3 := mulmod(v0, v1, v2) Operands Name Type Notes a i256 First factor. b i256 Second factor. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mulmod","id":"133","title":"mulmod"},"134":{"body":"( Expression::Unary with UnaryOperation::IsZero) Description Returns 1 if the operand is 0, else 0. Also serves as the logical NOT for boolean values. Syntax iszero($operand[: ]) Example let v1: i1 := iszero(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » iszero","id":"134","title":"iszero"},"135":{"body":"( Expression::Unary with UnaryOperation::Not) Description Bitwise complement. Inverts every bit; equivalent to xor(operand, 2^256 - 1). Syntax not($operand[: ]) Example let v1 := not(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — the complement fills the full word regardless of operand width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » not","id":"135","title":"not"},"136":{"body":"( Expression::Unary with UnaryOperation::Clz) Description Count leading zeros. Returns the number of leading zero bits in the operand, where a value of 0 returns 256 (the full width). Not an EVM opcode; reaches newyork as a Yul builtin ( FunctionName::Clz) and is translated directly by the Yul-to-newyork translator. Syntax clz($operand[: ]) Example let v1 := clz(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — in practice the value fits in nine bits (max 256), so type inference often narrows further Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » clz","id":"136","title":"clz"},"137":{"body":"( Expression::Truncate) Description Reinterpret a wider integer as a narrower one by discarding the upper bits. The destination width is carried in the IR’s to: BitWidth field and is rendered inside the angle brackets of the printer mnemonic. Narrowing-only; the source width must be greater than or equal to the destination width. Syntax truncate>($value[: ]) Example let v1: i64 := truncate(v0)\\nlet v2: i8 := truncate(v1: i64) Operands Name Type Notes value i256 Source value; must be at least as wide as the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None. The destination width is part of the operation name, not a debug annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » truncate>","id":"137","title":"truncate>"},"138":{"body":"( Expression::ZeroExtend) Description Reinterpret a narrower integer as a wider one by zero-filling the upper bits. The destination width is carried in the IR’s to: BitWidth field. Widening-only. Syntax zext>($value[: ]) Example let v1 := zext(v0: i8) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » zext>","id":"138","title":"zext>"},"139":{"body":"( Expression::SignExtendTo) Description Reinterpret a narrower signed integer as a wider one by sign-extending the high bit. The destination width is carried in the IR’s to: BitWidth field. Distinct from signextend ( Expression::Binary), which is the EVM byte-position primitive; this one specifies the destination width directly and is introduced by passes that produce a sign-extended value at a known target width. Syntax sext>($value[: ]) Example let v1 := sext(v0: i64) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sext>","id":"139","title":"sext>"},"14":{"body":"--stack-size PVM is a register machine with a traditional stack memory space for local variables. This controls the total amount of stack space the contract can use. You are incentivized to keep this value as small as possible: Increasing the stack size will increase gas costs due to increased startup costs. The stack size contributes to the total memory size a contract can use, which includes the contract’s code size. Default value: 131072 Warning If the contract uses more stack memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Stack size","id":"14","title":"Stack size"},"140":{"body":"( Expression::Keccak256) Description Compute the Keccak-256 hash of length bytes of emulated EVM linear memory starting at offset. The general-purpose hashing primitive; the specialized variants below cover the common scratch-space patterns more compactly. Syntax keccak256($offset[: ], $length[: ]) Example let v2 := keccak256(v0, v1) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. length i256 Length of the region to hash, in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure — the hash is a deterministic function of the memory contents at evaluation time. Passes that hoist or dedupe must respect intervening memory writes. Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256","id":"140","title":"keccak256"},"141":{"body":"( Expression::Keccak256Pair) Description Compound hash of two 256-bit words. Equivalent to mstore(0, word0); mstore(32, word1); keccak256(0, 64) but emitted as a single outlined call after mem_opt’s keccak fusion recognizes the pattern. The mapping-key idiom; see also mapping_sload. Syntax keccak256_pair($word0[: ], $word1[: ]) Example let v2 := keccak256_pair(v0, v1) Operands Name Type Notes word0 i256 First word; the high 32 bytes of the hash input. word1 i256 Second word; the low 32 bytes of the hash input. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_pair","id":"141","title":"keccak256_pair"},"142":{"body":"( Expression::Keccak256Single) Description Compound hash of a single 256-bit word. Equivalent to mstore(0, word0); keccak256(0, 32) but emitted as a single outlined call after mem_opt’s keccak fusion. Syntax keccak256_single($word0[: ]) Example let v1 := keccak256_single(v0) Operands Name Type Notes word0 i256 The word to hash. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_single","id":"142","title":"keccak256_single"},"143":{"body":"( Expression::Caller) Description Address of the immediate caller of the current call frame. Syntax caller() Example let v0: i160 := caller() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » caller","id":"143","title":"caller"},"144":{"body":"( Expression::CallValue) Description Value (wei) attached to the current call. Syntax callvalue() Example let v0 := callvalue() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callvalue","id":"144","title":"callvalue"},"145":{"body":"( Expression::Origin) Description Address of the original externally owned account that initiated the transaction. Syntax origin() Example let v0: i160 := origin() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » origin","id":"145","title":"origin"},"146":{"body":"( Expression::Address) Description Address of the contract executing the current call frame. Syntax address() Example let v0: i160 := address() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » address","id":"146","title":"address"},"147":{"body":"( Expression::ChainId) Description Chain identifier of the network the contract is executing on. Syntax chainid() Example let v0 := chainid() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » chainid","id":"147","title":"chainid"},"148":{"body":"( Expression::Gas) Description Remaining gas at the point of evaluation. Modeled as a pure expression for IR purposes; in practice it changes between evaluations, so any simplifier that deduplicates pure expressions must respect gas as a barrier. Syntax gas() Example let v0: i64 := gas() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gas","id":"148","title":"gas"},"149":{"body":"( Expression::MSize) Description Highest byte offset of emulated EVM linear memory that has been touched, rounded up to the next 32-byte boundary. Unlike gas, classified as side-effectful by the simplifier: unused msize() bindings are not eliminated, because the result depends on the program’s memory-access history and would change if the surrounding statements were reordered. Syntax msize() Example let v0: i64 := msize() Operands None. Result and purity Result Purity i64 Effectful (see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » msize","id":"149","title":"msize"},"15":{"body":"--heap-size Unlike the EVM, due to the lack of dynamic memory metering, PVM contracts emulate the EVM heap memory with a static buffer. Consequentially, instead of infinite memory with exponentially growing gas costs, PVM contracts have a finite amount of memory with constant gas costs available. You are incentivized to keep this value as small as possible:\\n1.Increasing the heap size will increase startup costs.\\n2.The heap size contributes to the total memory size a contract can use, which includes the contract’s code size Default value: 131072 Warning If the contract uses more heap memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Heap size","id":"15","title":"Heap size"},"150":{"body":"( Expression::Coinbase) Description Address of the block’s coinbase (block author). Syntax coinbase() Example let v0: i160 := coinbase() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » coinbase","id":"150","title":"coinbase"},"151":{"body":"( Expression::Timestamp) Description Block timestamp, as a Unix epoch second. Syntax timestamp() Example let v0: i64 := timestamp() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » timestamp","id":"151","title":"timestamp"},"152":{"body":"( Expression::Number) Description Current block number. Syntax number() Example let v0: i64 := number() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » number","id":"152","title":"number"},"153":{"body":"( Expression::Difficulty) Description Pre-merge block difficulty. On post-merge chains this is the block’s prevrandao value. Syntax difficulty() Example let v0 := difficulty() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » difficulty","id":"153","title":"difficulty"},"154":{"body":"( Expression::GasLimit) Description Block gas limit. Syntax gaslimit() Example let v0: i64 := gaslimit() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gaslimit","id":"154","title":"gaslimit"},"155":{"body":"( Expression::BaseFee) Description Current block’s EIP-1559 base fee per gas. Syntax basefee() Example let v0 := basefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » basefee","id":"155","title":"basefee"},"156":{"body":"( Expression::BlobBaseFee) Description Current block’s EIP-4844 blob base fee per gas. Syntax blobbasefee() Example let v0 := blobbasefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobbasefee","id":"156","title":"blobbasefee"},"157":{"body":"( Expression::BlobHash) Description Versioned hash of the blob at the given index in the current transaction’s blob list. Syntax blobhash($index[: ]) Example let v1 := blobhash(v0) Operands Name Type Notes index i256 Blob index; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobhash","id":"157","title":"blobhash"},"158":{"body":"( Expression::BlockHash) Description Hash of the block with the given number. Per EVM, valid only for the most recent 256 blocks; outside that range the result is 0. Syntax blockhash($number[: ]) Example let v1 := blockhash(v0) Operands Name Type Notes number i256 Block number; forward analysis widens to i256. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blockhash","id":"158","title":"blockhash"},"159":{"body":"( Expression::SelfBalance) Description Balance (in wei) of the contract executing the current call frame. Cheaper than balance(address()). Syntax selfbalance() Example let v0 := selfbalance() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfbalance","id":"159","title":"selfbalance"},"16":{"body":"--solc Specify the path to the solc executable. By default, the one in ${PATH} is used.","breadcrumbs":"resolc user guide » Command Line Interface » solc","id":"16","title":"solc"},"160":{"body":"( Expression::GasPrice) Description Effective gas price of the current transaction. Syntax gasprice() Example let v0 := gasprice() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gasprice","id":"160","title":"gasprice"},"161":{"body":"( Expression::CallDataLoad) Description Read 32 bytes from the current call’s calldata at the given offset. Reads past the end of calldata return zero bytes. Syntax calldataload($offset[: ]) Example let v1 := calldataload(v0) Operands Name Type Notes offset i256 Byte offset into calldata. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldataload","id":"161","title":"calldataload"},"162":{"body":"( Expression::CallDataSize) Description Length of the current call’s calldata, in bytes. Syntax calldatasize() Example let v0: i64 := calldatasize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatasize","id":"162","title":"calldatasize"},"163":{"body":"( Expression::ReturnDataSize) Description Length of the most recently returned data buffer from a sub-call, in bytes. Modeled as pure per IR but reflects the last ExternalCall / Create result; consumers must respect that ordering. Syntax returndatasize() Example let v0: i64 := returndatasize() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatasize","id":"163","title":"returndatasize"},"164":{"body":"( Expression::CodeSize) Description Size of the currently executing code, in bytes. Syntax codesize() Example let v0: i64 := codesize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codesize","id":"164","title":"codesize"},"165":{"body":"( Expression::ExtCodeSize) Description Size of the code deployed at the given address, in bytes. Returns 0 for accounts with no deployed code. Syntax extcodesize($address[: ]) Example let v1: i64 := extcodesize(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodesize","id":"165","title":"extcodesize"},"166":{"body":"( Expression::ExtCodeHash) Description Keccak-256 hash of the code deployed at the given address. Returns 0 for non-existent accounts. Syntax extcodehash($address[: ]) Example let v1 := extcodehash(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodehash","id":"166","title":"extcodehash"},"167":{"body":"( Expression::Balance) Description Balance (in wei) of the given account address. Use selfbalance for the contract executing the current call frame (cheaper). Syntax balance($address[: ]) Example let v1 := balance(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » balance","id":"167","title":"balance"},"168":{"body":"( Expression::MLoad) Description Read a 32-byte word from emulated EVM linear memory at offset. The word is read big-endian per EVM semantics. Pure per IR, but reads after writes return the new value; the memory passes track read/write dependencies separately. Syntax mload($offset[: ]) [/* */] Example let v1 := mload(v0: i64)\\nlet v2: i32 := mload(v3: i64) /* free_ptr */ Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. Result and purity Result Purity i32 when region is FreePointerSlot; i256 otherwise Pure (per IR; see Description) Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. The region also determines the result width: a load from FreePointerSlot produces an i32 since the FMP fits in a pointer-sized word.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mload","id":"168","title":"mload"},"169":{"body":"( Expression::SLoad) Description Read a 32-byte word from persistent contract storage at the given key. Pure per IR; reads after writes to the same slot return the new value. Syntax sload($key[: ]) [/* slot: 0x */] Example let v1 := sload(v0)\\nlet v2 := sload(v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise Same tagging rules as sstore. The printer renders the annotation whenever the field is Some and the deduplicator’s canonicalizer partitions signatures by slot; no pass currently writes Some(...), however, so in present-day dumps the annotation is dormant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sload","id":"169","title":"sload"},"17":{"body":"--debug-output-dir Dump all intermediary compiler artifacts to files in the specified directory. This includes the Yul IR, optimized and unoptimized LLVM IR, the ELF object and the PVM assembly. When the newyork pipeline is active, the newyork IR is additionally dumped (the final IR, a pre-late-pass snapshot, and heap and memory optimization data). Useful for debugging and development purposes.","breadcrumbs":"resolc user guide » Command Line Interface » Debug artifacts","id":"17","title":"Debug artifacts"},"170":{"body":"( Expression::TLoad) Description Read a 32-byte word from transient storage at the given key. Transient storage is wiped at the end of the transaction; pair with tstore. Syntax tload($key[: ]) Example let v1 := tload(v0) Operands Name Type Notes key i256 Transient storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The IR does not track a static slot for tload.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tload","id":"170","title":"tload"},"171":{"body":"( Expression::MappingSLoad) Description Compound load for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sload(keccak256(0, 64)) but emitted as a single outlined call after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair — itself produced by mem_opt’s keccak fusion — followed by an sload whose key has a single consumer). Only valid when the intermediate hash is used exclusively by this load. Syntax mapping_sload($key[: ], $slot[: ]) Example let v2 := mapping_sload(v0: i160, v1) Operands Name Type Notes key i256 Mapping key; often narrowed to i160 for address keys. slot i256 The mapping’s declared storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The fused statement’s effective storage slot is the keccak hash of the key and the declared slot, which is never a compile-time constant; no static_slot hint is surfaced.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sload","id":"171","title":"mapping_sload"},"172":{"body":"( Expression::DataOffset) Description Offset of a named data segment within the deployed code. The identifier is a string carried in the IR’s id: String field; the linker resolves it to a concrete offset. Syntax dataoffset(\\"\\") Example let v0 := dataoffset(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i256 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position (not a comment annotation; it is the expression itself).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » dataoffset","id":"172","title":"dataoffset"},"173":{"body":"( Expression::DataSize) Description Size of a named data segment within the deployed code, in bytes. The identifier is resolved by the linker. Syntax datasize(\\"\\") Example let v0: i64 := datasize(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i64 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datasize","id":"173","title":"datasize"},"174":{"body":"( Expression::LoadImmutable) Description Read the value of a named immutable variable. Immutables are written once during contract construction by SetImmutable and read afterwards via this expression. Syntax loadimmutable(\\"\\") Example let v0 := loadimmutable(\\"MyContract.owner\\") Operands None — the key is a quoted string literal in the syntax position. Result and purity Result Purity i256 Pure Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » loadimmutable","id":"174","title":"loadimmutable"},"175":{"body":"( Expression::LinkerSymbol) Description Address of an external library, resolved by the linker. The path encodes the library’s source location and identifier. Syntax linkersymbol(\\"\\") Example let v0: i160 := linkersymbol(\\"contracts/Library.sol:L\\") Operands None — the path is a quoted string literal in the syntax position. Result and purity Result Purity i160 Pure Annotations Source field Printed as path: String The quoted path in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » linkersymbol","id":"175","title":"linkersymbol"},"176":{"body":"( Expression::Call; the printer emits func_ when no function name is registered) Description Internal function call. Invokes a user-defined function declared earlier in the same object; the mnemonic is the function’s Yul-level name, or func_ if the printer has no name registered for the FunctionId. Distinct from call and the other EVM call-opcode statements, which cross the contract boundary. Syntax ([$argument_0[: ], $argument_1[: ], …]) Example let v3 := abi_decode_uint256(v0, v1, v2)\\nlet v4, v5 := returns_two(v0) // multi-return via let multi-binding Operands Name Type Notes arguments Vec Zero or more argument values, in declaration order; each operand may carry a : suffix. Result and purity Result Purity One or more values, widths taken from the callee’s declared return types (or the inferred return widths, narrowed via the interprocedural pass). Falls back to i256 when the callee’s returns are unknown to type inference. Effectful — the simplifier treats every call as side-effectful regardless of callee body, so unused call bindings are not DCE’d. The transitive purity of the callee is not tracked at the IR level. Annotations Source field Printed as function: FunctionId The callee’s name in the syntax position (or func_ if the printer has no name registered).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » ","id":"176","title":""},"177":{"body":"The operations in this section all modify external state: emulated EVM linear memory, persistent storage, or transient storage. They are statements (not expressions) and they are never pure. Simplification and deduplication never reorder them with respect to each other or with respect to reverts; the memory passes treat them as the side-effect boundary for their analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Memory and storage writes","id":"177","title":"Memory and storage writes"},"178":{"body":"( Statement::MStore) Description Write a 32-byte word to emulated EVM linear memory at offset. The word is stored big-endian, matching EVM semantics; the codegen handles the byte swap on PolkaVM’s little-endian RISC-V target. Syntax mstore($offset[: ], $value[: ]) [/* */] Example mstore(v0, v1) // Unknown region; no annotation printed\\nmstore(v2, v3) /* scratch */ // offset proven to land in 0x00..0x3f\\nmstore(v4, v5) /* free_ptr */ // offset is exactly 0x40 Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 The 32-byte word to store. Narrower values are zero-extended at codegen time. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Assigned at translation time from the constant offset (if any); consumed by mem_opt, FMP propagation, and byte-swap mode selection.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore","id":"178","title":"mstore"},"179":{"body":"( Statement::MStore8) Description Write a single byte to emulated EVM linear memory at offset. The low 8 bits of value are stored; the upper bits are ignored. The operation is otherwise identical to mstore: same operand shape, same region tag, same side-effect classification. Syntax mstore8($offset[: ], $value[: ]) [/* */] Example mstore8(v0, v1: i8) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 Only the low 8 bits are stored. Often narrowed to i8 by type inference. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. Most mstore8s carry an Unknown region in practice because single-byte writes typically target offsets the translator cannot prove constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore8","id":"179","title":"mstore8"},"18":{"body":"-g Generate source based debug information in the output code file. Useful for debugging and development purposes and disabled by default.","breadcrumbs":"resolc user guide » Command Line Interface » Debug info","id":"18","title":"Debug info"},"180":{"body":"( Statement::MCopy) Description Copy length bytes from src to dest within emulated EVM linear memory. The Yul builtin mcopy maps directly onto this statement; unlike mstore, it does not carry a region tag because the source and destination ranges may straddle multiple regions. Syntax mcopy($dest[: ], $src[: ], $length[: ]) Example mcopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. src i256 Source byte offset in linear memory. length i256 Number of bytes to copy. Overlapping ranges follow EVM-defined memmove semantics. Result and purity Result Purity None Effectful Annotations None. mcopy carries no region tag because the source and destination ranges may straddle multiple regions, and no static-slot hint because the copy is not storage-bound.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mcopy","id":"180","title":"mcopy"},"181":{"body":"( Statement::SStore) Description Write a 32-byte word to persistent contract storage at key. The operation is the durable counterpart of mstore: the value survives across transactions and is observable to subsequent calls to the contract. Syntax sstore($key[: ], $value[: ]) [/* slot: 0x */] Example sstore(v0, v1)\\nsstore(v2, v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. May be a constant slot, a keccak-derived slot for mappings or dynamic arrays, or an arbitrary expression. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise The printer renders the annotation whenever the field is Some, and the deduplicator’s canonicalizer and mapping-fusion analyses consume it as part of the signature. No pass currently writes Some(...), so the annotation is dormant in present-day dumps; when absent, alias and dedup analyses fall back to the conservative “may alias any slot” assumption.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sstore","id":"181","title":"sstore"},"182":{"body":"( Statement::TStore) Description Write a 32-byte word to transient storage at key. Transient storage is wiped at the end of the transaction, so tstore is the right primitive for per-transaction bookkeeping (reentrancy guards, cached results) without the gas cost of sstore on EVM. On PolkaVM the transient backing store is provided by pallet-revive. Syntax tstore($key[: ], $value[: ]) Example tstore(v0, v1) Operands Name Type Notes key i256 Transient storage slot. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations None. Unlike sstore, the IR does not track a static slot for tstore: transient storage’s short-lived lifetime makes the slot-aware optimizations less valuable, and the translator does not produce the annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tstore","id":"182","title":"tstore"},"183":{"body":"( Statement::MappingSStore) Description Compound store for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sstore(keccak256(0, 64), value) but emitted as a single outlined statement after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair followed by an sstore whose key has a single consumer). Only valid when the intermediate hash is not observed by any other statement. Syntax mapping_sstore($key[: ], $slot[: ], $value[: ]) Example mapping_sstore(v0, v1, v2) Operands Name Type Notes key i256 Mapping key. The outlining pass force-widens it to i256, so it always prints at full width, even for address keys. slot i256 The mapping’s declared storage slot. Typically a small constant. value i256 The value to store at the computed storage location. Result and purity Result Purity None Effectful Annotations None. mapping_sstore deliberately drops the static_slot annotation that the original sstore may have carried, because the fused statement’s effective slot is the keccak hash of the key and the declared slot, which is never a compile-time constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sstore","id":"183","title":"mapping_sstore"},"184":{"body":"Multi-byte memory copies from the EVM-accessible byte sources (code, external code, returndata, embedded data, and calldata) into emulated EVM linear memory. They all take the same shape: a destination memory offset, a source offset, and a length. They are effectful and act as opaque barriers to the memory passes.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bulk copies","id":"184","title":"Bulk copies"},"185":{"body":"( Statement::CodeCopy) Description Copy length bytes from the currently executing code at offset into emulated EVM linear memory at dest. Reads past the end of code yield zero bytes. Syntax codecopy($dest[: ], $offset[: ], $length[: ]) Example codecopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the executing code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codecopy","id":"185","title":"codecopy"},"186":{"body":"( Statement::ExtCodeCopy) Description Copy length bytes from the code at address starting at offset into emulated EVM linear memory at dest. Reads beyond the code yield zero bytes; non-existent accounts yield all zeros. Syntax extcodecopy($address[: ], $dest[: ], $offset[: ], $length[: ]) Example extcodecopy(v0: i160, v1, v2, v3) Operands Name Type Notes address i256 Account whose code to read; forward analysis widens to at least i160. dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the external code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodecopy","id":"186","title":"extcodecopy"},"187":{"body":"( Statement::ReturnDataCopy) Description Copy length bytes from the most recent sub-call’s return data starting at offset into emulated EVM linear memory at dest. Per EVM, reads past the return data’s end revert; the memory passes treat this as a potential trap site. Syntax returndatacopy($dest[: ], $offset[: ], $length[: ]) Example returndatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the return-data buffer. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful (may revert on out-of-range reads, per EVM) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatacopy","id":"187","title":"returndatacopy"},"188":{"body":"( Statement::DataCopy) Description Copy length bytes from an embedded data segment starting at offset into emulated EVM linear memory at dest. The source segment is resolved by the linker, typically used to pull constants compiled into the bytecode into runtime memory. Syntax datacopy($dest[: ], $offset[: ], $length[: ]) Example datacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the data segment. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datacopy","id":"188","title":"datacopy"},"189":{"body":"( Statement::CallDataCopy) Description Copy length bytes from the current call’s calldata starting at offset into emulated EVM linear memory at dest. Reads past the end of calldata yield zero bytes. Syntax calldatacopy($dest[: ], $offset[: ], $length[: ]) Example calldatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in calldata. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatacopy","id":"189","title":"calldatacopy"},"19":{"body":"--link [--libraries ] In Solidity, 3 things can happen with libraries: They are not externally callable and thus can be inlined. The solc Solidity optimizer inlines those (usually the case). Note: resolc always activates the solc Solidity optimizer. If the solc Solidity optimizer is disabled or for some reason fails to inline them (both rare), they are not inlined and require linking. They are externally callable but still linked at compile time. This is the case if at compile time the library address is known (i.e. --libraries supplied in CLI or the corresponding setting in STD JSON input). They are linked at deploy time. This happens when the compiler does not know the library address (i.e. --libraries flag is missing or the provided libraries are incomplete, same for STD JSON input). This case is rare because it’s discourage and should never be used by production dApps. In cases 1.2 and 3: Some of the produced code blobs will be in the “unlinked” raw ELF object format and not yet deployable. To make them deployable, they need to be “linked” (done using the resolc --link linker mode explained below). The compiler emitted DELEGATECALL instructions to call non-inlined (unlinked) libraries. The contract deployer must make sure to deploy any libraries prior to contract deployment. Warning Using deploy time linking is officially discouraged. Mainly due to bytecode hashes changing after the fact. We decided to support it in resolc regardless, due to popular request. Similar to how it works in solc, --libraries may be used to provide libraries during linking mode. Unlike with solc, where linking implies a simple string substitution mechanism, resolc needs to resolve actual missing ELF symbols. This is due to how factory dependencies work in PVM. As a consequence, it isn’t sufficient to just provide the unlinked blobs to the linker. Instead, they must be provided in the exact same directory structure the Solidity source code was found during compile time. Example: The contract src/foo/bar.sol:Bar is involved in deploy time linking. It may be a factory dependency. The contract blob needs to be provided inside a relative src/foo/ directory to --link. Otherwise symbol resolution may fail. Note Tooling is supposed to take care of this. In the future, we may append explicit linkage data to simplify the deploy time linking feature.","breadcrumbs":"resolc user guide » Command Line Interface » Deploy time linking","id":"19","title":"Deploy time linking"},"190":{"body":"The statements that bind SSA values, hold loose expressions evaluated for their side effects, and write to immutable storage. Every pure expression in this reference’s earlier sections appears on the right-hand side of one of these statements (almost always let).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bindings and wrappers","id":"190","title":"Bindings and wrappers"},"191":{"body":"( Statement::Let) Description SSA binding: evaluate an expression and bind its result(s) to a list of fresh value ids. The let statement is the only mechanism by which pure expressions enter the value namespace; every v in a dump was produced by a let (or by a value-yielding control-flow statement or by a parameter at function entry). Syntax let $binding_0[, $binding_1, …] := $expression Example let v3 := add(v0, v1)\\nlet v4, v5 := if v2 [v0, v1] { … } else { … } // multi-binding from a value-yielding If Operands Name Type Notes bindings Vec One or more fresh SSA ids to bind. Most expressions produce one value; control-flow statements may produce several. value Expression The right-hand side; see any of the Pure expression entries. Result and purity Result Purity None directly — the bound ids carry the expression’s result(s) Effectful (binding establishment); the right-hand side’s purity is independent Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » let","id":"191","title":"let"},"192":{"body":"( Statement::Expression) Description Wraps an expression evaluated for its observable consequences but whose value is not bound. Typically a zero-return (void) user-defined function call ( Expression::Call) evaluated for its side effects, or the discarded void result of a Yul builtin used as a statement (a value-producing expression is bound by a let instead). EVM external calls ( call, delegatecall, etc.) and contract creation ( create, create2) translate to dedicated Statement::ExternalCall and Statement::Create variants, not through this wrapper. Syntax $expression Example update_balance(v0) // void function called for its side effects Operands Name Type Notes expression Expression Any expression; result is discarded. Result and purity Result Purity None Effectful (per its statement position) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Expression statement","id":"192","title":"Expression statement"},"193":{"body":"( Statement::SetImmutable) Description Write an immutable variable during contract construction. Immutables are written once in the constructor and read later via loadimmutable. The key is a string identifier resolved by the linker. Syntax setimmutable(\\"\\", $value[: ]) Example setimmutable(\\"MyContract.owner\\", v0) Operands Name Type Notes value i256 The value to store; the key is a quoted string literal in the syntax position. Result and purity Result Purity None Effectful Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » setimmutable","id":"193","title":"setimmutable"},"194":{"body":"The IR’s control flow is structured: if, switch, and for are statements with explicit nested regions, each carrying input values and yielding output values. The jump-like statements ( break, continue, leave) are scoped to their nearest enclosing construct. Nested blocks create lexical scope without otherwise changing control flow.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Structured control flow","id":"194","title":"Structured control flow"},"195":{"body":"( Statement::If) Description Conditional execution with optional value yields. The then region runs when condition is non-zero; the else region runs otherwise. If outputs is non-empty, both regions must yield the same number of values and the statement is bound by a let. Syntax if $condition[: ] [[$input_0, $input_1, …]] { … } [else { … }] Example if v0: i1 { sstore(v1, v2)\\n} let v5, v6 := if v3: i1 [v1, v2] { let v7: i64 := 0x1 // add widens its operands to the i64 register width let v8 := add(v2, v7: i64) yield v1, v8\\n} else { yield v1, v2\\n} Operands Name Type Notes condition i256 Branch selector; non-zero takes the then region. Often narrowed to i1. inputs Vec Values threaded into both regions, printed in square brackets after the condition. (regions) — The then_region is mandatory; the else_region is optional and, when absent, implicitly yields the inputs unchanged. Result and purity Result Purity None for the statement form; for the value-yielding form, one value per outputs binding, types taken from the yielded values Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » if","id":"195","title":"if"},"196":{"body":"( Statement::Switch) Description Multi-way dispatch on a scrutinee value. Each case matches a specific constant and runs its region; an optional default region catches non-matching values. Like if, switch may yield values via outputs and accept thread-through values via inputs. Syntax switch $scrutinee[: ] [[$input_0, …]]\\ncase 0x { …\\n}\\n[case 0x { …\\n} …]\\n[default { …\\n}] Example switch v0\\ncase 0x0 { sstore(v1, v2)\\n}\\ncase 0x1 { sstore(v1, v3)\\n}\\ndefault { invalid()\\n} Operands Name Type Notes scrutinee i256 The value to compare against each case. inputs Vec Values threaded into every case and default region. cases Vec Each case carries a constant value: BigUint and a region. (default) — Optional fall-through region. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » switch","id":"196","title":"switch"},"197":{"body":"( Statement::For) Description Structured loop with explicit loop-carried variables. Each iteration evaluates condition_statements followed by condition; if the condition is non-zero, the body region runs, then the post region runs, and the loop iterates. Loop-carried variables are passed as SSA values through each region. break exits the loop and continue jumps to the post region. Syntax for { $variable_0 := $initial_0[, …] } [// condition statements: …] condition: $condition post [($post_input_variable_0[, …])] { … } body { … body … } Example let v0: i1 := 0x0\\nlet v6 := for { v1 := v0: i1 } // condition statements: let v2: i8 := 0xa condition: lt(v1, v2: i8) post (v3) { let v4: i64 := 0x1 let v5 := add(v3, v4: i64) yield v5 } body { sstore(v1, v1) 0x0: void yield v1 } Operands Name Type Notes initial_values Vec Starting values for the loop-carried variables. loop_variables Vec SSA ids visible inside condition, body, and post. condition_statements Vec Statements evaluated each iteration before the condition expression; emitted into the loop header block. Printed only when non-empty, behind a // condition statements: comment. condition Expression Re-evaluated each iteration; non-zero continues, zero exits. body Region Loop body; yields current loop-carried values. post_input_variables Vec Input SSA ids for the post region (one per loop-carried variable); receive the body’s yielded values merged with continue-site values via phi nodes in the LLVM codegen. post Region Runs after each body iteration (and after continue); yields updated loop-carried values. outputs Vec Final loop-carried values after exit. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » for","id":"197","title":"for"},"198":{"body":"( Statement::Break) Description Exit the innermost enclosing for loop. Carries the current values of loop-carried variables at the break point; these become the loop’s outputs. Syntax break Example if v0 { break [v1, v2] } Operands The loop-carried values: Vec print in brackets when non-empty (e.g. break [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » break","id":"198","title":"break"},"199":{"body":"( Statement::Continue) Description Skip to the post region of the innermost enclosing for loop. Like break, carries the current values of loop-carried variables internally. Syntax continue Example if v0 { continue [v1, v2] } Operands The loop-carried values print in brackets when non-empty (e.g. continue [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » continue","id":"199","title":"continue"},"2":{"body":"Head to contracts.polkadot.io for more general information about contracts on Polkadot.","breadcrumbs":"Welcome » Other Polkadot contracts resources","id":"2","title":"Other Polkadot contracts resources"},"20":{"body":"The resolc compiler driver is published as an NPM package under @parity/resolc. It’s usable from Node.js code or directly from the command line: npx @parity/resolc@latest --bin crates/integration/contracts/flipper.sol -o /tmp/out Note While the npm package makes a nice portable option, it doesn’t expose all options.","breadcrumbs":"resolc user guide » JS NPM package » JS NPM package","id":"20","title":"JS NPM package"},"200":{"body":"( Statement::Leave) Description Exit the current function, returning the listed values as the function’s return values. The Yul-level leave keyword translates directly to this statement; the inlining pass eliminates intra-function leaves where possible via the exit-flag transformation. Syntax leave [[$value_0[: ], $value_1[: ], …]] Example leave [v0, v1] // returns v0 and v1 from the function\\nleave // returns nothing (void function) Operands Name Type Notes return_values Vec Empty for void functions; otherwise one entry per declared return. Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » leave","id":"200","title":"leave"},"201":{"body":"( Statement::Block) Description A lexical scope without conditional or iterative behavior. The body is a region; control falls through after the region’s statements complete. Used to bound the visibility of inner bindings. Syntax { …\\n} Example { let v0 := add(v1, v2) sstore(v3, v0)\\n} // v0 is no longer in scope here Operands None — the body is a region, not an operand. Result and purity Result Purity None Effectful (per the body’s contents) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Nested block","id":"201","title":"Nested block"},"202":{"body":"Statements that cross the contract boundary: external calls, contract creation, and event log emission. All produce or rely on external state and act as barriers to memory and storage analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » External interaction","id":"202","title":"External interaction"},"203":{"body":"( Statement::ExternalCall with CallKind::Call) Description Standard external call that may transfer value. Reads args_length bytes from emulated EVM linear memory at args_offset as calldata, executes the target, and writes up to ret_length bytes of return data into linear memory at ret_offset. The boolean result indicates success. Syntax let $result := call($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := call(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Name Type Notes gas i256 Gas to forward to the target; forward analysis widens to at least i64. address i256 Callee address; forward analysis widens to at least i160. value i256 Wei to transfer with the call. args_offset i256 Calldata source offset in linear memory; forward analysis widens to at least i64. args_length i256 Calldata length in bytes; forward analysis widens to at least i64. ret_offset i256 Return-data destination offset in linear memory; forward analysis widens to at least i64. ret_length i256 Maximum return-data length; forward analysis widens to at least i64. Result and purity Result Purity i256 (success flag: 1 on success, 0 on revert/error; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » call","id":"203","title":"call"},"204":{"body":"( Statement::ExternalCall with CallKind::CallCode) Description Deprecated EVM opcode that executes the callee’s code in the caller’s context but with the callee’s storage. Not supported by the newyork backend (codegen rejects it); use delegatecall instead. Syntax let $result := callcode($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := callcode(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Same shape as call. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callcode","id":"204","title":"callcode"},"205":{"body":"( Statement::ExternalCall with CallKind::DelegateCall) Description Execute the callee’s code in the caller’s context: same storage, same sender, same call value. The standard mechanism for library calls and proxy patterns. No value operand (the caller’s call value is inherited). Syntax let $result := delegatecall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := delegatecall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » delegatecall","id":"205","title":"delegatecall"},"206":{"body":"( Statement::ExternalCall with CallKind::StaticCall) Description Read-only external call. Any state modification in the callee (including nested calls) causes the call to revert. No value operand. Syntax let $result := staticcall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := staticcall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful (no state writes, but still an external boundary and may revert) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » staticcall","id":"206","title":"staticcall"},"207":{"body":"( Statement::Create with CreateKind::Create) Description Deploy a new contract with the given init-code bytes, transferring value wei from the caller. The new contract’s address is derived from the caller’s address and nonce; on failure the result is 0. Syntax let $result := create($value[: ], $offset[: ], $length[: ]) Example let v4 := create(v0, v1: i64, v2: i64) Operands Name Type Notes value i256 Wei to transfer to the new contract. offset i256 Linear-memory offset of the init code; forward analysis widens to at least i64. length i256 Length of the init code in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create","id":"207","title":"create"},"208":{"body":"( Statement::Create with CreateKind::Create2) Description Deploy a new contract with a deterministic address derived from the caller’s address, the salt, and the init-code hash. Same operand shape as create plus an additional salt. Syntax let $result := create2($value[: ], $offset[: ], $length[: ], $salt[: ]) Example let v5 := create2(v0, v1: i64, v2: i64, v3) Operands Same as create plus salt: i256. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create2","id":"208","title":"create2"},"209":{"body":"( Statement::Log) Description Emit an event log entry. The mnemonic suffix is the number of indexed topics ( 0 through 4), determined by the length of the IR’s topics field. The data portion is read from length bytes of emulated EVM linear memory at offset. Syntax log($offset[: ], $length[: ][, $topic_0[: ], …]) Example log0(v0: i64, v1: i64) // no topics\\nlog2(v0: i64, v1: i64, v2, v3) // two topics Operands Name Type Notes offset i256 Data source offset in linear memory; forward analysis widens to at least i64. length i256 Data length in bytes; forward analysis widens to at least i64. topics Vec Zero to four indexed topic values; the length determines the mnemonic suffix. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » log","id":"209","title":"log"},"21":{"body":"resolc achieved successful integration with a variety of third party developer tools.","breadcrumbs":"resolc user guide » Tooling integration » Tooling integration","id":"21","title":"Tooling integration"},"210":{"body":"Statements that end the current call frame. Plain forms ( return, revert, stop), unconditional traps ( invalid, selfdestruct), and outlined revert variants ( panic_revert, error_string_revert, custom_error_revert) that encode common Solidity error patterns into single nodes that can be deduplicated across call sites.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Termination","id":"210","title":"Termination"},"211":{"body":"( Statement::Return) Description End the current call frame successfully, returning length bytes from emulated EVM linear memory at offset as the return data. Syntax return($offset[: ], $length[: ]) Example return(v0: i64, v1: i64) Operands Name Type Notes offset i256 Return-data source offset; forward analysis widens to at least i64. length i256 Return-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » return","id":"211","title":"return"},"212":{"body":"( Statement::Revert) Description End the current call frame with a revert, undoing all state changes made during the call, and returning length bytes of revert data from emulated EVM linear memory at offset. Syntax revert($offset[: ], $length[: ]) Example revert(v0: i64, v1: i64) Operands Name Type Notes offset i256 Revert-data source offset; forward analysis widens to at least i64. length i256 Revert-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » revert","id":"212","title":"revert"},"213":{"body":"( Statement::Stop) Description End the current call frame successfully with empty return data. Syntax stop() Example stop() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » stop","id":"213","title":"stop"},"214":{"body":"( Statement::Invalid) Description Unconditional invalid-opcode trap. Consumes all remaining gas and reverts. Used for unreachable branches and assertion failures. Syntax invalid() Example invalid() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » invalid","id":"214","title":"invalid"},"215":{"body":"( Statement::SelfDestruct) Description End the current call frame and transfer the contract’s remaining balance to address. Post-Cancun, the contract storage is not deleted (selfdestruct is effectively deprecated; the opcode still exists for legacy compatibility). Syntax selfdestruct($address[: ]) Example selfdestruct(v0: i160) Operands Name Type Notes address i256 Recipient of the contract’s balance; forward analysis widens to at least i160. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfdestruct","id":"215","title":"selfdestruct"},"216":{"body":"( Statement::PanicRevert) Description Outlined Solidity panic revert. Equivalent to writing the Panic(uint256) ABI encoding (selector 0x4e487b71 plus the panic code) into emulated EVM linear memory and reverting, but emitted as a single statement that lowers to one outlined helper call. Common panic codes: 0x01 assertion failure, 0x11 arithmetic overflow, 0x12 division by zero, 0x32 array-out-of-bounds, 0x41 memory overflow. Syntax panic_revert(0x) Example panic_revert(0x11) // arithmetic overflow Operands None — the panic code is stored as a u8 field on the IR, not an SSA operand. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as code: u8 The panic code in 0x form (two hex digits, zero-padded).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » panic_revert","id":"216","title":"panic_revert"},"217":{"body":"( Statement::ErrorStringRevert) Description Outlined Solidity Error(string) revert. Equivalent to writing the Error selector ( 0x08c379a0), the string offset and length, and up to four 32-byte data words into emulated EVM linear memory and reverting. The string length and the data words are stored as compile-time fields; no SSA operands. Syntax error_string_revert(, _words) Example error_string_revert(12, 1_words) // 12-byte string in one 32-byte word Operands None — the string length and data are compile-time fields, not SSA operands. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as length: u8 The string length in bytes, in the first syntax position. data: Vec The number of 32-byte data words (1–4), printed as _words in the second syntax position. The actual data is stored separately and not shown in the printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » error_string_revert","id":"217","title":"error_string_revert"},"218":{"body":"( Statement::CustomErrorRevert) Description Outlined Solidity custom-error revert. Encodes the error selector (left-shifted by 224 bits) and zero or more argument values into scratch memory and reverts. No FMP load is needed; the encoding uses the scratch region at offset 0. Syntax custom_error_revert(0x, [$arg_0, $arg_1, …]) Example custom_error_revert(0xa28c4c11, [v0, v1]) Operands Name Type Notes arguments Vec Zero or more argument values; the selector is a compile-time field. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as selector: BigUint The 4-byte error selector in hex, in the first syntax position. The selector is stored left-shifted by 224 bits; the printer right-shifts it back and prints the bare 4-byte value.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » custom_error_revert","id":"218","title":"custom_error_revert"},"219":{"body":"The revive compiler targets PolkaVM (PVM) via pallet-revive on Polkadot.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » PVM and the pallet-revive runtime target","id":"219","title":"PVM and the pallet-revive runtime target"},"22":{"body":"Support for resolc is available in forks of the hardhat and foundry Solidity toolkits: The Parity Hardhat fork The Parity Foundry fork","breadcrumbs":"resolc user guide » Tooling integration » Solidity toolkits","id":"22","title":"Solidity toolkits"},"220":{"body":"The exact target CPU configuration can be found here. Note The PVM linker requires fully relocatable ELF objects.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Target CPU configuration","id":"220","title":"Target CPU configuration"},"221":{"body":"PVM is a RISC-V based VM designed to overcome the flaws of WebAssebmly (Wasm). Wasm was believed to be a more efficient successor to the rather slow EVM. However, Wasm is far from an ideal target for smart contracts as some of its design decisions are unfavorable for short-lived workloads. The main problem is on-chain Wasm bytecode compilation or interpretation overhead. Prior benchmarks consistently ignoring this overhead seeded the blockchain industry with flawed assumptions: Only when ignoring the startup overhead Wasm is much faster than the slow computing EVM. In practice however, gains are nullified entirely and Wasm loses completely even against very slow VMs like the EVM. Executing Wasm contracts is in fact so inefficient that typical contract workloads are orders of magnitude more expensive than the equivalent EVM variant. On the other hand, since RISC-V is similar to CPUs found in validator hardware (x86 and ARM), bytecode translation mostly boils down to a linear mapping from one instruction to another. The embedded ISA specification reduces the number of general purpose registers, in turn removing the need for expensive register allocation. This guarantees single-pass O(n) JIT compilation of contract bytecode. The close proximity of PVM bytecode with actual validator CPU bytecode effectively allows to move all expensive compilation workload off-chain. Benchmarks ( 1, 2) show that with the PVM JIT, sandboxed PVM code executes at around half the speed of native code, which falls into the same ballpark of the state-of-the-art wasmtime Wasm implementation (while EVM sits somewhere around 1/10 to less than 1/100 of native speed). However, the PVM JIT compiler only uses a fraction of the time wasmtime requires to compile the code. Note The PVM JIT isn’t available yet in pallet-revive. At the time of writing, the contract code is interpreted, which is orders of magnitude slower than the JIT.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Why PVM","id":"221","title":"Why PVM"},"222":{"body":"The revive compiler targets the pallet-revive runtime environment. pallet-revive exposes a syscall like interface for contract interactions with the host environment. This is provided by the revive-runtime-api library. After the initial launch on the Polkadot Asset Hub blockchain, the runtime API is considered stable and backwards compatible indefinitively.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Host environment: pallet-revive","id":"222","title":"Host environment: pallet-revive"},"223":{"body":"Contributors are encouraged to implement some appropriate unit and integration tests together with any bug fixes or new feature implementations. However, when it comes to testing the code generation logic, our testing strategy goes way beyond simple unit and integration tests. This chapter explains how the revive compiler implementation is tested for correctness and how we define correctness. Tip Running the integration tests require the evm tool from go-ethereum in your $PATH. Either install it using your package manager or to build it from source: git clone https://github.com/ethereum/go-ethereum/\\ncd go-ethereum\\nmake all\\nexport PATH=/path/to/go-ethereum/build/bin/:$PATH","breadcrumbs":"Developer Guide » Testing strategy » Testing strategy","id":"223","title":"Testing strategy"},"224":{"body":"As a Solidity compiler, we aim to preserve contract code semantics as close as possible to Solidity compiled to EVM with the solc reference implementation. As highlighted in the user guide, due to the underlying target difference, this isn’t always possible. However, wherever it is possible, we follow the philosophy of bug compatibility with the Ethereum contracts stack.","breadcrumbs":"Developer Guide » Testing strategy » Bug compatibility with Ethereum Solidity","id":"224","title":"Bug compatibility with Ethereum Solidity"},"225":{"body":"A high level of bug compatibility with Ethereum is ensured through differential testing with the Ethereum solc and EVM contracts stack. The revive-integration library is the central integration test utility, providing a set of Solidity integration test cases. Further, it implements differential tests against the reference implementation by combining the revive-runner sandbox, the go-ethereum EVM tool and the revive-differential. The revive-runner library provides a declarative test specification format. This vastly simplifies writing differential test cases and removes a lot of room for errors in test logic. Example: { \\"differential\\": true, \\"actions\\": [ { \\"Instantiate\\": { \\"code\\": { \\"Solidity\\": { \\"contract\\": \\"Bitwise\\" } } } }, { \\"Call\\": { \\"dest\\": { \\"Instantiated\\": 0 }, \\"data\\": \\"3fa4f245\\" } } ]\\n} Above example instantiates the Bitwise contract and calls it with some defined calldata. The revive-runner library implements a helper wrapper to execute test specs on the go-ethereum standalone evm tool. This allows the revive-runner to execute specs against the EVM and the pallet-revive runtime. Key to differential testing is setting \\"differential\\": true, resulting in the following: The Bitwise contract is compiled to EVM and PVM code. The runner executes the defined actions on the EVM and collects all state changes (storage, balance) and execution results. The runner executes each action on the PVM. Observed state changes after each step as well as the final execution result is asserted to match the EVM counterparts exactly. Note how we never defined any expected outcome manually. Instead, we simply observe and collect the data defining the “correct” outcome. Differential testing in combination with declarative test specifications proved to be simple, yet very effective, in ensuring expected Ethereum Solidity semantics on pallet-revive.","breadcrumbs":"Developer Guide » Testing strategy » Differential integration tests","id":"225","title":"Differential integration tests"},"226":{"body":"A lot of nuanced bugs caused by tiny implementation details inside the revive compiler and the pallet-revive runtime could be identified and eliminated early on thanks to the differential testing strategy. Thus, we decided to take this approach further and created a comprehensive test runner and a large suite of more complex test cases. The Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.","breadcrumbs":"Developer Guide » Testing strategy » The differential testing utility","id":"226","title":"The differential testing utility"},"227":{"body":"We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment. The musl target is used to obtain statically linked ELF binaries for Linux.","breadcrumbs":"Developer Guide » Cross compilation » Cross compilation","id":"227","title":"Cross compilation"},"228":{"body":"The REVIVE_LLVM_TARGET_PREFIX environment variable is used to control the target environment LLVM dependency. This requires a compatible LLVM build, obtainable via the revive-llvm build script. Example: # Build the host LLVM dependency with PolkaVM target support\\nmake install-llvm\\nexport LLVM_SYS_221_PREFIX=${PWD}/target-llvm/gnu/target-final # Build the target LLVM dependency with PolkaVM target support\\nrevive-llvm emsdk\\nsource emsdk/emsdk_env.sh\\nrevive-llvm --target-env emscripten build --llvm-projects lld\\nexport REVIVE_LLVM_TARGET_PREFIX=${PWD}/target-llvm/emscripten/target-final # Build the resolc frontend executable\\nmake install-wasm\\nmake test-wasm","breadcrumbs":"Developer Guide » Cross compilation » Wasm via emscripten","id":"228","title":"Wasm via emscripten"},"229":{"body":"rust-musl-cross is a straightforward way to cross compile Rust to musl. The Dockerfile is an executable example of how to do that.","breadcrumbs":"Developer Guide » Cross compilation » musl libc","id":"229","title":"musl libc"},"23":{"body":"resolc is available on godbolt.org for the Solidity and Yul input languages. See also the announcement post on the forum.","breadcrumbs":"resolc user guide » Tooling integration » Compiler explorer","id":"23","title":"Compiler explorer"},"230":{"body":"","breadcrumbs":"FAQ » FAQ","id":"230","title":"FAQ"},"231":{"body":"We neither do nor don’t support any EVM version. We support Solidity versions, starting from solc version 0.8.0 onwards.","breadcrumbs":"FAQ » What EVM version do you support?","id":"231","title":"What EVM version do you support?"},"232":{"body":"Yes, almost all inline assembly features are supported ( see the differences in Yul translation chapter).","breadcrumbs":"FAQ » Is inline assembly supported","id":"232","title":"Is inline assembly supported"},"233":{"body":"See above, the same applies.","breadcrumbs":"FAQ » Do you support opcode XY?","id":"233","title":"Do you support opcode XY?"},"234":{"body":"We generally recommend to always use the latest supported version to profit from latest bugfixes, features and performance improvements. Find out about the latest supported version by running resolc --supported-solc-versions or checking here.","breadcrumbs":"FAQ » In what Solidity version should I write my dApp?","id":"234","title":"In what Solidity version should I write my dApp?"},"235":{"body":"The 24kb code size restriction only exist for the EVM. Our limit is currently around 1mb and may increase further in the future.","breadcrumbs":"FAQ » Tool XY says the contract size is larger than 24kb and will fail to deploy?","id":"235","title":"Tool XY says the contract size is larger than 24kb and will fail to deploy?"},"236":{"body":"No. resolc aims to work similarly to solc, but it’s not considered a drop-in replacement.","breadcrumbs":"FAQ » Is resolc a drop-in replacement for solc?","id":"236","title":"Is resolc a drop-in replacement for solc?"},"237":{"body":"The revive compiler speeds up Solidity contracts significantly. revive provides a decisive edge over other contract platforms. Notably, the compiler eliminates the need of rewriting Solidity dApps in Rust or even as single dApp parachains for scaling reasons. Retaining as high compatibility with Ethereum Solidity as possible keeps entry barriers low. We believe in Dr. Gavin Wood’s ĐApps: What Web 3.0 Looks Like manifesto and the ecosystem of the Solidity programming language. Our motivation lies in the realization that for a true web3 revolution, significant scaling efforts, like the ones provided by the PVM and this project, are necessary to unfold.","breadcrumbs":"Roadmap and Vision » Vision and Roadmap","id":"237","title":"Vision and Roadmap"},"238":{"body":"The first major release, resolc v1.0.0, emits functional PVM code from given Solidity sources. It relies on solc and LLVM for optimizations. The main priority of this release was delivering a mostly feature complete and safe Solidity v0.8.0 compiler. Focus for the second major release is on the custom optimization pipeline, which aims to significantly improve emitted code blob sizes. The below roadmap gives a rough overview of the project’s development timeline.","breadcrumbs":"Roadmap and Vision » Roadmap","id":"238","title":"Roadmap"},"24":{"body":"There is remix IDE fork with resolc support at remix.polkadot.io. Unfortunately this is no longer actively maintained (there might be bugs and outdated resolc versions).","breadcrumbs":"resolc user guide » Tooling integration » Remix IDE","id":"24","title":"Remix IDE"},"25":{"body":"The revive compiler is mostly compatible with the solc standard JSON interface. There are a few differences and additional (PVM related) input configurations:","breadcrumbs":"resolc user guide » Standard JSON interface » Standard JSON interface","id":"25","title":"Standard JSON interface"},"26":{"body":"Used to configure PVM specific compiler settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm object","id":"26","title":"The settings.polkavm object"},"27":{"body":"A boolean value allowing to enable debug information. Corresponds to resolc -g.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.debugInformation","id":"27","title":"settings.polkavm.debugInformation"},"28":{"body":"A boolean value allowing to enable the experimental newyork IR pipeline for Yul lowering. Corresponds to resolc --newyork. Off by default. The output JSON includes which pipeline actually ran, via the top-level resolc_pipeline field ( \\"newyork\\" or \\"yul\\" for the standard Yul-to-LLVM pipeline).","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.newyork","id":"28","title":"settings.polkavm.newyork"},"29":{"body":"Used to apply PVM specific memory configuration settings. settings.polkavm.memoryConfig.heapSize A numerical value allowing to configure the contract heap size. Corresponds to resolc --heap-size. settings.polkavm.memoryConfig.stackSize A numerical value allowing to configure the contract stack size. Corresponds to resolc --stack-size.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm.memoryConfig object","id":"29","title":"The settings.polkavm.memoryConfig object"},"3":{"body":"This mdBook documents the revive Solidity compiler project. The content is found under book/. Run make book to observe changes.","breadcrumbs":"Welcome » About","id":"3","title":"About"},"30":{"body":"The settings.optimizer object is augmented with support for PVM specific optimization settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.optimizer object","id":"30","title":"The settings.optimizer object"},"31":{"body":"A single char value to configure the LLVM optimizer settings. Corresponds to resolc -O.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.optimizer.mode","id":"31","title":"settings.optimizer.mode"},"32":{"body":"Allows to specify arbitrary command line arguments to LLVM initialization. Used mainly for development and debugging purposes.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.llvmArguments","id":"32","title":"settings.llvmArguments"},"33":{"body":"Used to select desired outputs.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.outputSelection object","id":"33","title":"The settings.outputSelection object"},"34":{"body":"Resolc supports the “all” ( *) wildcard for the file-level (first-level) and contract-level (second-level) keys. A file-level key can be either the wildcard or a specific file name, whereas the contract-level key can only be the wildcard for robustness reasons. Thus, output can be requested in 2 ways: // All files and all contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"*\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] } } }\\n} // Specific files and all their contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file.sol\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] }, // Rest of files... } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The “all” ( *) wildcard","id":"34","title":"The “all” ( *) wildcard"},"35":{"body":"Note Currently, resolc supports requesting either the full evm output, or one more level of specificity, such as evm.bytecode. When requesting code generation, such as evm.bytecode or evm.assembly, the resolc compilation process additionally needs ast, metadata, irOptimized, and evm.methodIdentifiers selectors. These selectors will be automatically added if code generation is needed, but will only be included in the output if explicitly requested. { \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file1.sol\\": { // Contracts in this file will generate bytecode. // Only these fields of the JSON output selection will be in the `contracts` output. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\", \\"evm.bytecode\\"], // Only this field of the JSON output selection will be in the `sources` output. \\"\\": [\\"ast\\"] }, \\"path/to/my/file2.sol\\": { // No contracts in this file will generate bytecode. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\"], // No `ast` will be in the `sources` output (only the automatically added `id`, // similar to solc as this is not a configurable output selection). \\"\\": [] }, } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The contract-level evm output selection","id":"35","title":"The contract-level evm output selection"},"36":{"body":"This section highlights some potentially observable differences in the YUL EVM dialect translation compared to Ethereum Solidity. Solidity developers deploying dApps to pallet-revive ought to read and understand this section well.","breadcrumbs":"resolc user guide » Differences to EVM » Differences to EVM","id":"36","title":"Differences to EVM"},"37":{"body":"Our contract runtime does not differentiate between runtime code and deploy (constructor) code.\\nInstead, both are emitted into a single PVM contract code blob and live on-chain.\\nTherefore, in EVM terminology, the deploy code equals the runtime code. Tip In constructor code, the codesize instruction will return the call data size instead of the actual code blob size.","breadcrumbs":"resolc user guide » Differences to EVM » Deploy code vs. runtime code","id":"37","title":"Deploy code vs. runtime code"},"38":{"body":"We are aware of the following differences in the translation of Solidity code.","breadcrumbs":"resolc user guide » Differences to EVM » Solidity","id":"38","title":"Solidity"},"39":{"body":"pallet-revive doesn’t apply the 63/64 gas rule. We strongly advice to change any code calling untrusted contracts to supply a limited amount of gas only!","breadcrumbs":"resolc user guide » Differences to EVM » The 63/64 gas rule","id":"39","title":"The 63/64 gas rule"},"4":{"body":"resolc is a Solidity v0.8 compiler for Polkadot native smart contracts. Solidity compiled with resolc targets PolaVM (PVM). Thanks to additional compiler optimizations and the PVM JIT, contract code can execute much faster than the EVM equivalent. resolc supports almost all Solidity v0.8 features including inline assembly, offering a high level of comptability with the Ethereum Solidity reference implementation.","breadcrumbs":"resolc user guide » resolc user guide","id":"4","title":"resolc user guide"},"40":{"body":"This returns the bytecode keccak256 hash instead.","breadcrumbs":"resolc user guide » Differences to EVM » address.creationCode","id":"40","title":"address.creationCode"},"41":{"body":"The below list contains noteworthy differences in the translation of YUL functions. Note Many functions receive memory buffer offset pointer or size arguments. The PVM pointer size is 32 bit, supplying memory offset or buffer size values above 2^32-1 may lead to OutOfGas errors trap contract execution. The solc compiler ought to always emit valid memory references, so Solidity dApp authors don’t need to worry about this unless they deal with low level assembly code.","breadcrumbs":"resolc user guide » Differences to EVM » YUL functions","id":"41","title":"YUL functions"},"42":{"body":"In general, revive preserves the memory layout, meaning low level memory operations are supported. However, a few caveats apply: The EVM linear heap memory is emulated using a fixed byte buffer of 128kb. This implies that the maximum memory a contract can use is limited to 128kb (on Ethereum, contract memory is capped by gas and therefore varies). Thus, accessing memory offsets larger than the fixed buffer size will trap the contract at runtime with an OutOfBound error. The compiler might detect and optimize unused memory reads and writes, leading to a different msize compared to what the EVM would see.","breadcrumbs":"resolc user guide » Differences to EVM » mload, mstore, msize, mcopy (memory related functions)","id":"42","title":"mload, mstore, msize, mcopy (memory related functions)"},"43":{"body":"In the constructor code, the offset is ignored and this always returns 0. Warning pallet-revive restricts the calldata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » calldataload, calldatacopy","id":"43","title":"calldataload, calldatacopy"},"44":{"body":"Only supported in constructor code.","breadcrumbs":"resolc user guide » Differences to EVM » codecopy","id":"44","title":"codecopy"},"45":{"body":"Deployments on revive work different than on EVM. In a nutshell: Instead of supplying the deploy code concatenated with the constructor arguments (the EVM deploy model), the revive runtime expects two pointers: A buffer containing the code hash to deploy. The constructor arguments buffer. To make contract instantiation using the new keyword in Solidity work seamlessly, revive translates the dataoffset and datasize instructions so that they assume the contract hash instead of the contract code.\\nThe hash is always of constant size.\\nThus, revive is able to supply the expected code hash and constructor arguments pointer to the runtime. Warning This might fall apart in code creating contracts inside assembly blocks. We strongly discourage using the create family opcodes to manually craft deployments in assembly blocks! Usually, the reason for using assembly blocks is to save gas, which is likely futile on revive due to the underlying differences in the VM architectures, gas models and transaction costs.","breadcrumbs":"resolc user guide » Differences to EVM » create, create2","id":"45","title":"create, create2"},"46":{"body":"Returns the contract hash.","breadcrumbs":"resolc user guide » Differences to EVM » dataoffset","id":"46","title":"dataoffset"},"47":{"body":"Returns the contract hash size (constant value of 32).","breadcrumbs":"resolc user guide » Differences to EVM » datasize","id":"47","title":"datasize"},"48":{"body":"pallet-revive restricts the returndata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » revert, return","id":"48","title":"revert, return"},"49":{"body":"Translates to a constant value of 2500000000000000.","breadcrumbs":"resolc user guide » Differences to EVM » prevrandao, difficulty","id":"49","title":"prevrandao, difficulty"},"5":{"body":"revive is the name of the overarching “Solidity to PolkaVM” compiler project, which contains multiple components (for example the Yul parser, the code generation library, the resolc executable itself, and many more things). resolc is the name of the compiler driver executable, combining many revive components in a single and easy to use binary application. In other words, revive is the whole compiler infrastructure (more like LLVM) and resolc is a user-facing single-entrypoint compiler frontend (more like clang).","breadcrumbs":"resolc user guide » revive vs. resolc nomenclature","id":"5","title":"revive vs. resolc nomenclature"},"50":{"body":"Only valid to use in EVM (they also have no use case in PVM) and produce a compile time error.","breadcrumbs":"resolc user guide » Differences to EVM » pc, extcodecopy","id":"50","title":"pc, extcodecopy"},"51":{"body":"Related to the Ethereum rollup model and produce a compile time error. Polkadot offers a superior rollup model, removing the use case for blob data related opcodes.","breadcrumbs":"resolc user guide » Differences to EVM » blobhash, blobbasefee","id":"51","title":"blobhash, blobbasefee"},"52":{"body":"There are two different compilation pipelines available in solc and there are small differences between them. Since resolc processes the YUL IR, always assume the solc IR based codegen behavior for contracts compiled with the revive compiler.","breadcrumbs":"resolc user guide » Differences to EVM » Difference regarding the solc via-ir mode","id":"52","title":"Difference regarding the solc via-ir mode"},"53":{"body":"With via-ir, base constructors run before derived state variables are initialized: contract InnerContract { uint public innerConstructedStartTokenId; constructor() { innerConstructedStartTokenId = _startTokenId(); } function _startTokenId() internal view virtual returns (uint) { return 0; }\\n} contract Test is InnerContract { uint public START_TOKEN_ID = 1; constructor() InnerContract() { } function _startTokenId() internal view virtual override returns (uint) { return START_TOKEN_ID; }\\n} Here, innerConstructedStartTokenId in Test returns 0 (with legacy EVM codegen it’d return 1).","breadcrumbs":"resolc user guide » Differences to EVM » Example: State variable initialization order in inheritance","id":"53","title":"Example: State variable initialization order in inheritance"},"54":{"body":"Note This is not yet implemented but something for consideration on the roadmap. Solidity - tightly coupled to the EVM - introduces some inherent inefficiencies that are by design and either needs to be followed or can’t be easily worked around, even with efforts like better optimized compiler and VM implementations. This represents a technical dead end. So far the EVM sees no adoption beyond the blockchain industry. Chances are that the EVM end up deprecated for technical reasons (or maybe not and the RISC-V idea gets abandoned, who knows). PVM, however, is a general purpose VM. It supports LLVM based mainstream programming languages like Rust. It’s a common software engineering practice to compose applications from pieces written in multiple languages, using each to their own strength. For example, AI solutions traditionally use the python scripting language for convenient developer experience, while the underlying AI models get implemented in a lower level language such as C++. The same pattern can of course be applied to dApps, where we’d expect application specific languages like Solidity mixed with libraries implementing computationally complex algorithms in a lower level language. Business logic and user interfaces are naturally implemented as regular Solidity dApps which can include (link against) Rust libraries. Rust is a fast, safe low level language and the Polkadot SDK is written in Rust itself, making it an excellent choice. For example, ZK proof verifiers or expensive DeFi primitives would benefit greatly from Rust implementations. revive provides tooling support and a small Rust contracts SDK for seamless integration with Rust libraries.","breadcrumbs":"resolc user guide » Rust contract libraries » Rust contract libraries","id":"54","title":"Rust contract libraries"},"55":{"body":"Running contract code usually requires a blockchain node. While local dev nodes can be used, sometimes it’s just not desirable to do so. Instead, it can be much more convenient to run and debug contract code with a stripped down environment. This is where the revive-runner comes in handy. In a nutshell, it is a single-binary no-blockchain pallet-revive runtime.","breadcrumbs":"revive-runner sandbox » revive-runner sandbox","id":"55","title":"revive-runner sandbox"},"56":{"body":"Inside the root revive repository directory, install it from source (requires Rust installed): make install-revive-runner After installing, see revive-runner --help for usage help.","breadcrumbs":"revive-runner sandbox » Installation and usage","id":"56","title":"Installation and usage"},"57":{"body":"The standard RUST_LOG environment variable controls the log output from the contract execution. This includes revive runtime logs and PVM execution trace logs. Sometimes it’s convenient to have more fine granular insight. Some useful filters: RUST_LOG=runtime=trace: The pallet-revive runtime trace logs. RUST_LOG=polkavm=trace: Low level PolkaVM instruction tracing.","breadcrumbs":"revive-runner sandbox » Trace logs","id":"57","title":"Trace logs"},"58":{"body":"To avoid running the constract in an unitialized state, revive-runner automatically instantiates the contract before calling it (constructor arguments can be provided).","breadcrumbs":"revive-runner sandbox » Automatic contract instantiation","id":"58","title":"Automatic contract instantiation"},"59":{"body":"Suppose we want to trace the syscalls of the execution of a compiled contract file Flipper.pvm: RUST_LOG=runtime=trace revive-runner -f Flipper.pvm\\n[DEBUG runtime::revive] Contract memory usage: purgable=6144/3145728 KB baseline=103063/1572864\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] value_transferred(out_ptr: 4294836096) = Ok(()) gas_consumed: Weight { ref_time: 2937634, proof_size: 0 }\\n[TRACE runtime::revive::strace] call_data_copy(out_ptr: 131216, out_len: 0, offset: 0) = Ok(()) gas_consumed: Weight { ref_time: 4084483, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 0, data_ptr: 131216, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 0, data: [] })) gas_consumed: Weight { ref_time: 5510615, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: (empty), data: [] })\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 1, data_ptr: 131088, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 1, data: [] })) gas_consumed: Weight { ref_time: 2456669, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: REVERT, data: [] })","breadcrumbs":"revive-runner sandbox » Example","id":"59","title":"Example"},"6":{"body":"Building Solidity contracts for PolkaVM requires installing the following two compilers: solc: The Ethereum Solidity reference compiler implementation. resolc: The revive Solidity compiler YUL frontend and PolkaVM code generator.","breadcrumbs":"resolc user guide » Installation » Installation","id":"6","title":"Installation"},"60":{"body":"This chapter covers internal aspects of the compiler and helps contributors getting started with the revive codebase.","breadcrumbs":"Developer Guide » Developer guide","id":"60","title":"Developer guide"},"61":{"body":"The revive compiler is an open source software project and we gladly accept quality contributions from anyone!","breadcrumbs":"Developer Guide » Contributor guide » Contributor guide","id":"61","title":"Contributor guide"},"62":{"body":"A quick reference on how to build the Solidity compiler is maintained in the project’s README.md.","breadcrumbs":"Developer Guide » Contributor guide » Getting started","id":"62","title":"Getting started"},"63":{"body":"The Makefile comprehensively encapsulates all development aspects of this codebase. It is kept concise and readable. Please read and use it! You’ll learn for example: How to build and install a resolc development version. How to run tests and benchmarks. How to cross-compile resolc. As a general rule-of-thumb: If make test runs fine locally, chances for green CI pipelines are good.","breadcrumbs":"Developer Guide » Contributor guide » Using the Makefile","id":"63","title":"Using the Makefile"},"64":{"body":"For the most parts, revive is a rather standard Rust workspace codebase. There are some non-Rust dependencies, which sometimes complicates things a little bit. The crates/ dir All Rust crates live under the crates/ directory. The workspace automatically considers any crate found therein. If you need to add a new create, please implement it there. Compiler library crates should be named with the revive- prefix. The crate location doesn’t need the prefix. Dependencies Dependencies should be added as workspace dependencies. Try to avoid pinning dependencies whenever possible. If possible, add dev dependencies as dev-dependencies only. Please do always include the Cargo.lock dependency lock file with your PR. Please don’t run cargo update together with other changes (it is preferred to update the lock file in a dedicated dependency update PR).","breadcrumbs":"Developer Guide » Contributor guide » Codebase organization","id":"64","title":"Codebase organization"},"65":{"body":"Changes must be submitted via a pull request (PR) to the github upstream repository. Ensure that your branch passes make test locally when submitting a pull request. A PR must not be merged until CI fully passes. Exceptions can be made (for example to fix CI issues itself). No force pushes to the main branch and open PR branches. Maintainers can request changes or deny contributions at their own discretion.","breadcrumbs":"Developer Guide » Contributor guide » Contribution rules","id":"65","title":"Contribution rules"},"66":{"body":"We require the official Rust formatter and clippy linter. In addition to that, please also consider the following best-effort aspects: Avoid magic numbers and strings. Instead, add them as module constants. Avoid abbreviated variable and function names. Always provide meaningful and readable symbols. Don’t write macros and don’t use third party macros for things that can easily be expressed in few lines of code or outlined into functions. Avoid import aliasing. Please use the parent or fully qualified path for conflicting symbols. Any inline comments must provide additional semantic meaning, explain counter-intuitive behavior or highlight non-obvious design decisions. In other words, try to make the code expressive enough to a degree it doesn’t need comments expressing the same thing again in the English language. Delete such comments if your AI assistant generated them. Public items must have a meaningful doc comment. Provide meaningful panic messages to .expect() or just use .unwrap().","breadcrumbs":"Developer Guide » Contributor guide » Style guide","id":"66","title":"Style guide"},"67":{"body":"Contributors may use whatever AI assistance tools they wish to whatever degree they wish in the process of creating their contribution, given they acknowledge the following: Project maintainers may reject any contribution (or portions of it) if the contribution shows signs of problematic involvement of generative AI. Judgement of “problematic involvement” lies at the sole discretion of project maintainers. No proof (whether a contribution was in fact AI generated or not) is required. Rationale: No one enjoys reading soulless and uncanny LLM slop. Please review and fix any AI slop yourself prior to submitting a PR. A Solidity compiler is security sensitive software. Even miniscule mistakes can ultimately lead to loss of funds. AI models are inherently stochastic. They regurarly fail to capture important nuances or produce straight hallucinations. Code that was “blindly” generated has no home here. revive is a large codebase. Generative AI assistants may not have enough “context window” to sufficiently capture correctness, consistency and style aspects of the codebase. We’d like to keep this codebase maintainable by humans for the forseeable future.","breadcrumbs":"Developer Guide » Contributor guide » AI policy","id":"67","title":"AI policy"},"68":{"body":"revive relies on solc, the Ethereum Solidity compiler, as the Solidity frontend to process smart contracts written in Solidity. LLVM, a popular and powerful compiler framework, is used as the compiler backend and does the heavy lifting in terms of optimizitations and RISC-V code generation. revive mainly takes care of lowering the Yul intermediate representation (IR) produced by solc to LLVM IR. This approach provides a good balance between maintaining a high level of Ethereum compatibility, good contract performance and feasible engineering efforts.","breadcrumbs":"Developer Guide » Compiler architecture » Compiler architecture and internals","id":"68","title":"Compiler architecture and internals"},"69":{"body":"resolc is the overarching compiler driver library and binary. When compiling a Solidity source file with resolc, the following steps happen under the hood: solc is used to lower the Solidity source code into YUL intermediate representation. revive lowers the YUL IR into LLVM IR. LLVM optimizes the code and emits a RISC-V ELF shared object (through LLD). The PolkaVM linker finally links the ELF shared object into a PolkaVM blob. This compilation process can be visualized as follows:","breadcrumbs":"Developer Guide » Compiler architecture » resolc","id":"69","title":"resolc"},"7":{"body":"resolc is supported an all major operating systems and installation is straightforward.\\nPlease find our binary releases for the following platforms: Linux (MUSL) MacOS (universal) Windows Wasm via emscripten","breadcrumbs":"resolc user guide » Installation » resolc binary releases","id":"7","title":"resolc binary releases"},"70":{"body":"Because on-chain contract code is identified via its code blob hash, it is crucial to maintain reproducible contract builds. A given compiler version must reproduce the contract build exactly on every target platform resolc supports via the official binary releases. To ensure this, we employ the following measures: The code generation must be fully deterministic. For example iterating over standard HashMap invalidates this due to its internal state, making it an invalid operation in revive. To circumvent that, a BTreeMap can be used instead. We release fully statically linked resolc binaries. This prevents dynamic linking of potentially differentiating libraries. The only non-bundled dependency is the solc compiler. This is considered fine because the same properties apply to solc.","breadcrumbs":"Developer Guide » Compiler architecture » Reproducible contract builds","id":"70","title":"Reproducible contract builds"},"71":{"body":"The main compiler logic is implemented in the revive-yul and revive-llvm-context crates. The Yul library implements a lexer and parser and lowers the resulting tree into LLVM IR. It does so by emitting LL using the LLVM builder and our own revive-llvm-context compiler context crate. The revive LLVM context crate encapsulates code generation logic (decoupled from the parser). The Yul library also implements a simple visitor interface (see visitor.rs). If you want to work with the AST, it is strongly recommended to implement visitors. The LLVM code generation is implemented using a dedicated trait for historical reasons only.","breadcrumbs":"Developer Guide » Compiler architecture » The revive compiler libraries","id":"71","title":"The revive compiler libraries"},"72":{"body":"PVM doesn’t offer a similar API. Hence the emitted contract code emulates the linear EVM heap memory using a static byte buffer. Data inside this byte buffer is kept big endian for EVM compatibility reasons (unaligned access is allowed and makes optimizing this non-trivial). Unlike with the EVM, where heap memory usage is gas metered, our heap size is static (the size is user controllable via a setting flag). The compiler emits bound checks to prevent overflows.","breadcrumbs":"Developer Guide » Compiler architecture » EVM heap memory","id":"72","title":"EVM heap memory"},"73":{"body":"LLVM is a special non Rust dependency. We interface its builder interface via the inkwell wrapper crate. We use upstream LLVM, but release and use our custom builds. We require the compiler builtins specifically built for the PVM rv64emacb target and always leave assertions on. Furthermore, we need cross builds because resolc itself targets emscripten and musl. The revive-llvm-builer functions as a cross-platform build script and is used to build and release the LLVM dependency. We also maintain the lld-sys crate for interfacing with LLD. The LLVM linker is used during the compilation process, but we don’t want to distribute another binary.","breadcrumbs":"Developer Guide » Compiler architecture » The LLVM dependency","id":"73","title":"The LLVM dependency"},"74":{"body":"An experimental newyork optimizer introduces a custom IR layer between Yul and LLVM IR to capture optimization opportunities that neither solc nor LLVM can realize on their own. solc optimizes for EVM gas on a 256-bit big-endian stack machine, while LLVM lacks the domain knowledge to understand EVM memory semantics or Solidity patterns. The newyork IR bridges this gap with passes for type narrowing, memory optimization, function deduplication, and more.","breadcrumbs":"Developer Guide » Compiler architecture » Custom optimizations","id":"74","title":"Custom optimizations"},"75":{"body":"The newyork crate ( crates/newyork/) introduces an additional intermediate representation (IR) layer between Yul and LLVM IR. It enables domain-specific optimizations that neither solc nor LLVM can perform on their own, because they lack semantic knowledge about the cross-domain compilation from EVM to PolkaVM. Note The newyork optimizer is experimental. It is gated behind the --newyork CLI flag or the settings.polkavm.newyork field in standard JSON input, and not yet enabled by default.","breadcrumbs":"Developer Guide » The newyork optimizer » The newyork optimizer","id":"75","title":"The newyork optimizer"},"76":{"body":"The EVM and PolkaVM are fundamentally different machines: Property EVM PolkaVM (RISC-V) Word size 256-bit 64-bit Endianness Big-endian Little-endian Architecture Stack machine Register-based Memory model Linear with free pointer convention Flat address space solc optimizes Yul IR for EVM gas costs on a 256-bit big-endian stack machine. LLVM, on the other hand, operates at too low a level to understand EVM memory semantics or Solidity patterns. By the time Yul reaches LLVM IR, the high-level intent is lost. The newyork IR sits between these two worlds and recovers enough semantic information to make optimization decisions that neither compiler can make alone.","breadcrumbs":"Developer Guide » The newyork optimizer » Motivation","id":"76","title":"Motivation"},"77":{"body":"┌──────────────────────────────────────────────────┐\\nYul AST ──────────► │ newyork IR │ ──► LLVM IR ──► RISC-V from_yul│ │ to_llvm │ 1. inline │ │ 2. simplify (pass 1) │ │ 3. dedup (exact + fuzzy) │ │ 4. mem_opt + fmp_prop + keccak_fold │ │ 5. simplify (pass 2) │ │ 6. mapping_access_outlining + guard_narrow │ │ 7. simplify (pass 3) │ │ 8. dedup (exact + fuzzy, pass 2) │ │ ── recursive on subobjects ── │ │ 9. type_inference (iterative narrowing) │ │ 10. late inline loop: inline, simplify, outline, │ │ guard-narrow, simplify, dedup, narrow │ │ 11. heap_opt (analysis) │ │ 12. validate │ └──────────────────────────────────────────────────┘ The optimizer runs the following passes in order: Inlining – custom heuristics tuned for PolkaVM call overhead, with Tarjan SCC-based recursion detection and quadratic leave-overhead modeling. Simplify (pass 1) – constant folding, algebraic identities, strength reduction ( mul by power-of-2 to shl), copy propagation, dead code elimination, environment read CSE ( callvalue, caller, origin, etc.), and revert pattern outlining (panic selectors, custom error selectors). Function deduplication – exact structural match, then fuzzy dedup (functions differing only in literal constants are parameterized and merged, up to 4 differing positions). Memory optimization – load-after-store elimination, keccak256 fusion ( mstore + keccak256 sequences into Keccak256Single/ Keccak256Pair nodes), free memory pointer propagation (replaces mload(0x40) with a known constant), and constant keccak256 folding (precomputes hashes of compile-time-constant inputs). Simplify (pass 2) – cleans up dead code and new constant expressions exposed by memory optimization and keccak folding. Compound outlining – detects keccak256_pair + sload/ sstore sequences and fuses them into MappingSLoad/ MappingSStore IR nodes, eliminating intermediate hash values. Guard narrowing – detects if gt(val, MASK) { revert } and iszero(eq(val, and(val, MASK))) patterns and inserts AND-mask narrowing, giving type inference proof that values fit in fewer bits. Simplify (pass 3) – propagates opportunities created by compound outlining and guard narrowing. Function deduplication (pass 2) – catches new duplicates exposed by guard narrowing and compound outlining canonicalization. Type inference – narrows 256-bit values to smaller widths ( I1, I8, I32, I64, I128, I160) where provable. Runs iteratively for up to 4 cascading refinement rounds, combining forward min-width propagation, backward use-context demands, transparent-operation demand propagation, and interprocedural parameter/return narrowing. Late inline loop – now that narrowing and simplification have shrunk wrapper functions below the inline thresholds, re-runs inlining, simplification, mapping access outlining, guard narrowing, deduplication, and type inference to collect the residual opportunities. Heap analysis – analyzes memory access patterns (alignment, static offsets, taintedness, escaping regions) to determine which accesses can use native little-endian layout, skipping byte-swap operations. Uses GCD-based alignment propagation and per-region taint tracking. Validation – checks SSA well-formedness (use-before-def, multiple definitions), yield count consistency, and function reference correctness. Steps 1-8 run recursively on subobjects (deployed contract code), where optimization impact is greatest. Steps 9-12 run on the full object tree.","breadcrumbs":"Developer Guide » The newyork optimizer » Pipeline overview","id":"77","title":"Pipeline overview"},"78":{"body":"The newyork IR is an SSA form with structured control flow, inspired by MLIR’s SCF dialect. Key design choices: Explicit types with address spaces: Every value carries a bit-width ( I1, I8, I32, I64, I128, I160, I256) and pointers carry address space information ( Heap, Stack, Storage, Code). All values start as I256 and are narrowed by type inference. Pure expressions vs. effectful statements: Expressions compute values without side effects; statements perform memory, storage, or control flow effects. This separation simplifies analysis and rewriting. Semantic annotations: Memory operations are tagged with region information ( Scratch, FreePointerSlot, Dynamic). Storage operations carry static slot values when known at compile time. Structured control flow: If, Switch, and For nodes preserve the high-level structure from Yul, with explicit region arguments and yields for value flow across control edges. For per-operation detail — printed syntax, operand and result types, and more — see the newyork IR reference.","breadcrumbs":"Developer Guide » The newyork optimizer » IR design","id":"78","title":"IR design"},"79":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Key optimizations explained","id":"79","title":"Key optimizations explained"},"8":{"body":"resolc uses solc during the compilation process, please refer to the Ethereum Solidity documentation for installation instructions.","breadcrumbs":"resolc user guide » Installation » Installing the solc dependency","id":"8","title":"Installing the solc dependency"},"80":{"body":"EVM operates on 256-bit words, but most values in practice fit in 32 or 64 bits. The type inference pass performs bidirectional analysis: Forward: computes minimum width from literal values and operation semantics (e.g., add(I64, I8) produces I65, rounded up to I128). Backward use tracking: classifies each value’s uses into 9 context categories ( MemoryOffset, MemoryValue, StorageAccess, Comparison, Arithmetic, FunctionArg, FunctionReturn, ExternalCall, General). All categories conservatively demand the full I256 width by default; the categorization is what enables the interprocedural phase to selectively relax the demand for narrowed function arguments. Earlier versions narrowed directly from the use category, but that was unsound for memory offsets — mload(2^128) aliased to mload(0) because the bounds check ran on an already-truncated value (commit ccca38df). Transparent demand propagation: for modular-arithmetic operations ( Add, Sub, Mul, And, Or, Xor), propagates narrow demands backward through operands, exploiting the property that trunc(op(a,b), N) == op(trunc(a,N), trunc(b,N)). Interprocedural: iteratively narrows function parameter and return types in up to four rounds, combining four narrowing strategies — body-driven parameter narrowing, caller-driven parameter narrowing, forward-based return narrowing, and demand-based return narrowing — and re-running full inference between rounds. Parameters are clamped to at least I32 (XLEN on PolkaVM). This allows LLVM to emit native 32/64-bit instructions instead of software-emulated 256-bit arithmetic, and eliminates expensive multi-instruction comparison sequences (16-20 RISC-V instructions for i256 comparisons reduced to 1-2 for i64).","breadcrumbs":"Developer Guide » The newyork optimizer » Type narrowing","id":"80","title":"Type narrowing"},"81":{"body":"Solidity emits runtime guards that prove values fit in narrow ranges (e.g., address validation via if gt(val, 2^160-1) { revert }). The guard narrowing pass detects these patterns and inserts explicit AND-mask narrowing after the guard. This gives downstream type inference proof that the value fits in fewer bits, enabling cascading narrowing of comparisons, arithmetic, and memory operations that use the guarded value. Two pattern families are recognized: GT-based guards: if gt(val, MASK) { } where MASK is a boundary value like 2^N - 1 EQ-based guards: iszero(eq(val, and(val, MASK))) patterns common in Solidity’s address validation","breadcrumbs":"Developer Guide » The newyork optimizer » Guard narrowing","id":"81","title":"Guard narrowing"},"82":{"body":"PVM doesn’t provide EVM-compatible linear memory, so the compiler emulates it using a byte buffer with byte-swap operations for big-endian compatibility. The heap analysis pass determines which memory accesses can use native little-endian layout by analyzing access patterns: Tracks alignment and static offset information for all memory accesses using GCD-based propagation Propagates taintedness when addresses escape to external calls, are written by external sources ( codecopy, calldatacopy), or use unaligned access patterns Tracks variable-accessed offsets to prevent mode mismatches between native and byte-swap accesses to the same location Handles loop-carried variables conservatively (marked as non-literal to prevent false constant propagation) The codegen backend supports four memory access modes: AllNative (all accesses skip byte-swap), InlineNative (constant-offset accesses use native layout), InlineByteSwap (constant-offset accesses use inline byte-swap), and ByteSwap (standard byte-swap through helper functions).","breadcrumbs":"Developer Guide » The newyork optimizer » Heap optimization","id":"82","title":"Heap optimization"},"83":{"body":"The Solidity free memory pointer ( mload(0x40)) always fits in 32 bits — sbrk enforces FMP < heap_size on every store, regardless of which memory mode the contract uses. After every literal mload(0x40), codegen emits a trunc N → zext 256 chain (where N is bits(heap_size - 1), e.g. 17 for the 131,072-byte default heap). The trunc-extend round-trip is a no-op semantically, but exposes the bound to LLVM’s IPSCCP range analysis, which then propagates it through every add(fmp, K) and eliminates the trailing safe_truncate_int_to_xlen overflow checks at every FMP-derived offset use. Despite only affecting a single codegen site, this is the single largest contributor to the optimizer’s code-size reduction. A subtle gating issue: the byte-order mode ( InlineNative / ByteSwap) and the value bound on FMP are independent invariants. fmp_native_safe() and can_use_native(0x40) protect against mixing little-endian writers with big-endian readers on the FMP slot, which would corrupt the stored offset; the value bound is unrelated and holds in every mode. Earlier versions of the codegen gated the load-side range proof on the byte-order checks, which suppressed the optimization for any contract with dynamic memory accesses. Decoupling the two reasonings — keeping the byte-order gate on the store side, dropping it from the load-side range proof — is what makes the multiplicative IPSCCP effect available to OZ-class contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Free memory pointer range proof","id":"83","title":"Free memory pointer range proof"},"84":{"body":"The FMP slot is small but easy to mis-optimize. The codebase carries several\\nregression tests for previously-found soundness bugs; new FMP-related changes\\nshould be verified against them: mload_at_fmp_slot ( crates/integration/src/tests.rs, fixed in 1fd6063c): tests mload(0x40) and offsets near it ( 0x21, 0x3f, 0x42)\\non a contract that also performs dynamic mloads. Catches byte-order mismatches\\nwhen one access goes native (LE) and another goes byte-swap (BE). The fix\\nblocks native mode for FMP whenever has_dynamic_accesses is true. mload_huge_offset_traps (fixed in ccca38df): tests that mload(2^128) and mload(2^255) correctly trap via the gas-exhaustion\\npath. Catches UseContext::MemoryOffset narrowing bypassing the safe_truncate_int_to_xlen overflow check at the use site — mload(2^128) aliasing to mload(0) and returning the zero-initialized\\nscratch slot. The fix classifies MemoryOffset as I256 so it doesn’t\\ndrive narrowing; the bounds check at the use site catches out-of-range. FMP i32 shortcut removal ( dbcfc921): an earlier optimization stored\\nonly 4 bytes at offset 0x40 instead of the full 32-byte EVM word, breaking\\nany inline assembly using mstore(0x40, ...) for non-FMP purposes.\\nCaused a cascade of 249/251 retester failures via allocator corruption.\\nNo dedicated regression test was added — the retester corpus was sufficient\\ncoverage — but the lesson generalizes: writes to 0x40 must store the full\\nword, even when the high bits are provably zero, because the slot is part\\nof the same 32-byte memory region read by other code. When adding an optimization that touches FMP, distinguish carefully between:\\nthe byte-order encoding at the slot (must be consistent between writers\\nand readers), the value bound (FMP < heap_size, always true), and the stored width (must be 32 bytes for mstore(0x40, ...), even though only\\nthe low N bits are non-zero). Known limitation: dynamic full-word stores to the FMP word The fmp_could_be_unbounded analysis flags a static mstore(0x40, untrusted) and any\\ndynamic-offset mstore8, but not a dynamic-offset full-word mstore. Such a store whose\\ni256 offset wraps (mod 2²⁵⁶) to the FMP word [0x40, 0x5f] overwrites the free pointer with an\\narbitrary value, which the load-side range proof would then truncate — a miscompile. This is a deliberate, documented gap rather than a bug fix because there is no cheap sound\\ndiscriminator. A store hits the FMP word iff its offset lands in [0x40, 0x5f], which is\\nin-bounds — safe_truncate_int_to_xlen only traps offsets ≥ heap_size — and 256-bit wrap lets\\nany computed add(base, k) reach 0x40 with an adversarial operand, so the offset cannot be\\nproven to miss the slot from width/range information. The only sound recognizer (treat add(fmp, small_const) as ≥ 0x80 by induction on FMP-boundedness) needs new FMP-derivation\\ndataflow, is fragile, and still misses dynamic-index array stores. Conservatively flagging every\\ndynamic full-word store (as the rare dynamic mstore8 does, where it is free) disables the FMP\\nrange proof for essentially every contract — measured at roughly +9% / +30 KB on the\\nOpenZeppelin corpus. The gap is unreachable from solc output: solc’s dynamic memory stores are all free-pointer-relative\\n( ≥ 0x80) and never target 0x40. Only hand-written Yul ( resolc --yul) with an offset\\nengineered to equal 0x40 reaches it.","breadcrumbs":"Developer Guide » The newyork optimizer » Soundness traps for FMP optimizations","id":"84","title":"Soundness traps for FMP optimizations"},"85":{"body":"Two complementary optimizations target the common Solidity pattern of hashing values for storage slot computation: Fusion: Recognizes mstore + keccak256 sequences and fuses them into dedicated IR nodes ( Keccak256Single, Keccak256Pair), eliminating intermediate memory traffic. Constant folding: When all keccak256 inputs are compile-time constants, the hash is computed at compile time and replaced with a literal. Known limitation: constant-folding drops the fused-keccak scratch write-back The fused Keccak256Pair/ Keccak256Single helpers write their inputs back to scratch memory\\n( [0, 0x40) / [0, 0x20)), and fusion dead-eliminates the original mstores because that\\nwrite-back reproduces them. Constant-folding the fused node to a literal removes the helper, so the\\nscratch is left unwritten — a later mload from [0, 0x40) that the optimizer cannot forward\\n(across a region/call boundary) would read stale memory. This gap is deliberately left open: it is solc-unreachable (solc treats scratch as volatile and never\\nre-reads it as data after a keccak), and every sound fix is a code-size regression because the dropped\\nwrite-back means the current output is already short the stores (disabling the fold falls back to the\\nruntime keccak helper, +0.78% on the OZ corpus, with no later mem_opt pass to clean re-emitted\\nwrites). Only hand-written Yul that reads scratch after a constant-operand keccak across a boundary\\ncan observe it.","breadcrumbs":"Developer Guide » The newyork optimizer » Keccak256 fusion and folding","id":"85","title":"Keccak256 fusion and folding"},"86":{"body":"Solidity mapping accesses follow a predictable pattern: hash a key with a storage slot, then load/store the result. The compound outlining pass detects keccak256_pair(key, slot) followed by sload/ sstore and fuses them into MappingSLoad/ MappingSStore IR nodes. These are lowered to outlined helper functions ( __revive_mapping_sload, __revive_mapping_sstore) that combine the hash computation with the storage operation, eliminating intermediate values and redundant byte-swaps.","breadcrumbs":"Developer Guide » The newyork optimizer » Compound outlining (mapping access)","id":"86","title":"Compound outlining (mapping access)"},"87":{"body":"Solidity generates many near-identical functions that differ only in literal constants (e.g., error selectors, storage slot offsets). Fuzzy deduplication identifies such groups, parameterizes the differing literals (up to 4 positions), and replaces all copies with calls to a single shared implementation.","breadcrumbs":"Developer Guide » The newyork optimizer » Fuzzy function deduplication","id":"87","title":"Fuzzy function deduplication"},"88":{"body":"The simplify pass detects common revert patterns and replaces them with compact IR nodes: Panic reverts: Solidity Panic(uint256) sequences (selector 0x4e487b71 + encoded panic code) are collapsed into PanicRevert { code } nodes, which are lowered to shared helper functions. Custom error reverts: ABI-encoded custom error reverts with known selectors are collapsed into CustomErrorRevert { selector, args } nodes. These patterns appear dozens of times in typical contracts, and outlining them into shared blocks eliminates significant code duplication.","breadcrumbs":"Developer Guide » The newyork optimizer » Revert pattern outlining","id":"88","title":"Revert pattern outlining"},"89":{"body":"The LLVM codegen backend generates approximately 15 types of outlined helper functions for common operations: Storage: __revive_sload_word, __revive_sstore_word (handle byte-swap internally) Mapping: __revive_mapping_sload, __revive_mapping_sstore (keccak256 + storage in one call) Callvalue: __revive_callvalue, __revive_callvalue_nonzero (boolean optimization for non-payable checks) Calldataload: __revive_calldataload (outlined when >= 20 call sites) Memory: __revive_store_bswap, __revive_exit_checked, __revive_return_word Errors: __revive_error_string_revert_N, __revive_custom_error_N (per data-word count) Keccak wrappers: __keccak256_slot_N (one noinline wrapper per constant slot, internally dispatching to __revive_keccak256_two_words) Additionally, common exit patterns (revert with constant length, zero-value returns) are deduplicated into shared LLVM basic blocks, saving hundreds of instruction copies in large contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Outlined helper functions","id":"89","title":"Outlined helper functions"},"9":{"body":"We distribute the revive compiler as node.js module.","breadcrumbs":"resolc user guide » Installation » revive NPM package","id":"9","title":"revive NPM package"},"90":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Codesize results","id":"90","title":"Codesize results"},"91":{"body":"Reproducible with cargo test --package revive-integration -- codesize for the Via Yul IR column ( crates/integration/codesize.json) and cargo test --package revive-integration --features newyork -- codesize for the Via newyork IR column ( crates/integration/codesize_newyork.json). Contract Via Yul IR (bytes) Via newyork IR (bytes) Reduction Baseline 838 493 −41.2% Computation 2,368 1,217 −48.6% DivisionArithmetics 11,444 7,370 −35.6% ERC20 18,057 8,726 −51.7% Events 1,614 909 −43.7% FibonacciIterative 1,373 969 −29.4% Flipper 2,205 1,058 −52.0% SHA1 7,830 6,264 −20.0%","breadcrumbs":"Developer Guide » The newyork optimizer » Integration test contracts","id":"91","title":"Integration test contracts"},"92":{"body":"Measured against real-world contracts generated with the OpenZeppelin Wizard. The numbers below are a development snapshot. Contract Via newyork IR (bytes) oz_gov 81,840 erc721 52,634 erc20 45,703 oz_stable 45,052 oz_rwa 41,581 erc1155 33,087 oz_simple_erc20 17,024 proxy 3,748 Total 320,669 For comparison, building the same contracts without the newyork optimizer at the equivalent snapshot produced 563,526 bytes total — a reduction of about −43% across the corpus. Per-contract reductions in the integration suite range from roughly −20% (SHA1, where the bulk of the work is the SHA-1 inner loop and offers little to optimize) to about −52% (Flipper, where the optimizer strips away most of Solidity’s dispatch and storage-access scaffolding).","breadcrumbs":"Developer Guide » The newyork optimizer » OpenZeppelin contracts","id":"92","title":"OpenZeppelin contracts"},"93":{"body":"The first version of the newyork optimizer was authored collaboratively and reviewed extensively by the revive maintainers, as well as Claude Opus, Claude Fable, Qwen, Minimax and Deepseek LLMs, over a span of many months — from early February 2026 through mid-June 2026. The development progressed through several distinct phases: Phase 1 – Initial scaffolding: The first draft established the core IR data structures, Yul-to-newyork-IR translation, and LLVM codegen. Early commits focused on getting a correct round-trip through the new pipeline. Phase 2 – Optimization passes: Once the baseline was stable, optimization passes were added iteratively: inlining, simplification, memory optimization, function deduplication, keccak256 fusion, and type inference. Each pass was validated against differential tests comparing EVM and PVM execution. Phase 3 – Soundness hardening: Several type inference and narrowing approaches turned out to be unsound and had to be reworked: An early type inference approach caused namespace collisions across subobjects and was scoped per-object. Caller-based parameter narrowing was polluted by overly aggressive inference and replaced with body-based structural analysis. Backward demand-driven narrowing required multiple iterations to become provably safe. Phase 4 – Measuring and tuning: Systematic measurement of OpenZeppelin contracts revealed which optimizations had the most impact and which approaches regressed performance. Throughout development the optimizer was validated against the existing integration and differential test suites (containing over 30,000 test cases), which run each contract on both EVM and PVM and assert identical state changes. The newyork compiler pipeline introduced no new regressions over these test suites. This was achieved by careful manual reviews and many LLM bughunt loops. Additionally, a final security review by Anthropic’s Fable 5 LLM found no remaining soundness issues. As with any new compiler feature, it should still be treated as experimental as of now.","breadcrumbs":"Developer Guide » The newyork optimizer » Development history and challenges","id":"93","title":"Development history and challenges"},"94":{"body":"Approach Outcome Storage bswap decomposition (4x bswap.i64) Regressed: LLVM handles bswap.i256 better natively NoInline on __revive_int_truncate +62% regression: PolkaVM call overhead exceeds inline cost Native FMP memory (inline sbrk) Mixed: small contracts improved, large ones regressed from sbrk bloat Shared overflow trap block Mixed: prevented LLVM from eliminating individual dead overflow checks Aggressive IR-level single-call inlining Regressed large contracts (ERC20 +6.1%): merged bodies become monolithic functions LLVM can’t optimize, so large functions are deferred to LLVM’s inliner instead Type-inference narrowing of mload(0x40) to I32 Regressed small contracts (+252 bytes): conflicts with the codegen FMP range proof; the bound is exposed via a trunc→zext pair instead Full simplifier re-run after mem_opt Mixed: helped small ERC20 (−293 bytes) but regressed the OZ stablecoin (+72 bytes); replaced by a targeted keccak-only fold These results highlight a recurring theme: interacting well with LLVM’s own optimization passes is critical. Optimizations at the IR level can inadvertently inhibit LLVM’s downstream passes, sometimes causing surprising regressions.","breadcrumbs":"Developer Guide » The newyork optimizer » Approaches that did not work","id":"94","title":"Approaches that did not work"},"95":{"body":"The following opportunities have been identified but are not yet implemented: Memory optimization across loop boundaries: Tracked memory state is cleared around for loop condition, body, and post blocks, so load-after-store eliminations do not carry across loop iterations. Preserving loop-invariant state would recover more eliminations. Adaptive inlining thresholds: Current thresholds are static constants. Profile-guided or contract-size-aware heuristics could improve decisions for diverse contract sizes. Extended fuzzy deduplication: The current pass only parameterizes literals in Let bindings and SStore slots. Extending it to consider literals inside MStore, Return, Revert, and Log statements would find more deduplication opportunities. Type checking in validation: The validator checks SSA well-formedness and structure, but not operation type consistency. Type discipline is maintained by construction (type inference and codegen), with LLVM’s IR verifier as the backstop. Loop variable narrowing: Loop-carried variables are conservatively widened to I256. Reaching a fixed-point across loop iterations could allow narrower types for simple counters. Functions with leave inside a for loop are not inlined: the IR-level inliner defers such functions to LLVM’s inliner, so they miss the interprocedural constant propagation and width narrowing the IR-level pass provides.","breadcrumbs":"Developer Guide » The newyork optimizer » Known limitations and future work","id":"95","title":"Known limitations and future work"},"96":{"body":"Passing --debug-output-dir makes the newyork pipeline write IR and analysis artifacts for each compiled contract into that directory. The dumps are produced automatically whenever the directory is set. File Content .newyork Final optimized IR, annotated with the inferred type widths .snapshot.newyork IR snapshot taken before the late passes (only when captured during translation) .heap.newyork Heap analysis summary (native regions/offsets, taintedness, escapes, dynamic accesses) .mem.newyork Memory optimization counters (loads/stores eliminated, keccak fusions, FMP loads eliminated)","breadcrumbs":"Developer Guide » The newyork optimizer » Debug output","id":"96","title":"Debug output"},"97":{"body":"Module Purpose lib.rs Pipeline orchestration and pass sequencing ir.rs Core IR data structures (types, expressions, statements, functions, objects) from_yul.rs Yul AST to newyork IR translation (two-pass with forward reference support) to_llvm.rs newyork IR to LLVM IR codegen with outlined helpers and narrowing simplify.rs Constant folding, algebraic identities, strength reduction, copy propagation, DCE, environment read CSE, revert outlining, callvalue hoisting, function deduplication (exact and fuzzy), constant keccak folding inline.rs Function inlining with PolkaVM-tuned heuristics (Tarjan SCC, leave elimination) type_inference.rs Bidirectional integer width narrowing with transparent demand propagation mem_opt.rs Load-after-store elimination, keccak256 fusion, FMP propagation heap_opt.rs Heap access pattern analysis, alignment tracking, byte-swap elimination mapping_access_outlining.rs Mapping access pattern detection and fusion ( keccak256_pair + sload/ sstore) guard_narrow.rs Guard pattern detection and AND-mask narrowing insertion validate.rs IR well-formedness checks (SSA, yields, function references) printer.rs Human-readable IR pretty printer with configurable output ssa.rs SSA construction helpers (scope management, phi-node merging)","breadcrumbs":"Developer Guide » The newyork optimizer » Module reference","id":"97","title":"Module reference"},"98":{"body":"A per-operation reference for the newyork IR: textual syntax, operand and result types, purity, region and static-slot annotations, and examples.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » newyork IR reference","id":"98","title":"newyork IR reference"},"99":{"body":"This reference page enumerates every operation the newyork IR supports. It is a lookup, not a walkthrough: each entry is self-contained and intended to be reachable by anchor. Operations are grouped by function (memory and storage writes, pure expressions, control flow, and so on) rather than alphabetically. Jump to a specific operation from the operation index below, or use the sidebar. Every operation appears in two places in the codebase. The canonical Rust definition is a variant of either Expression or Statement in ir.rs. The textual rendering used by debug dumps and by this reference page is produced by the printer in printer.rs. Note Treat the printed syntax as a debug surface, not a stable input language: there is no parser for it, and printer details change when passes add new annotations.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » How to read this reference","id":"99","title":"How to read this reference"}},"length":239,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"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":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.0},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.6457513110645907}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.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.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"232":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"237":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"237":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"227":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"238":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"234":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.0},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":1.7320508075688772},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"234":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":1.7320508075688772},"37":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":10,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":63,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"228":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"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":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"237":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.1622776601683795},"207":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"238":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.0},"226":{"tf":2.0},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"231":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"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":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"237":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"236":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"227":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"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},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"237":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"237":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":67,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"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.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":4,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"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},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"50":{"tf":1.0}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"235":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"234":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.0}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"238":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"238":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"224":{"tf":1.0},"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"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":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"54":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"222":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":36,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"237":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"235":{"tf":1.0},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.449489742783178},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.0},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"237":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"235":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":4,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":5,"docs":{"19":{"tf":3.605551275463989},"227":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":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":{"102":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"228":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":24,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":3.0},"238":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.0}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.23606797749979},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"237":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":17,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"59":{"tf":1.0},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"237":{"tf":1.0},"76":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.0},"42":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"204":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"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},"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.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"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},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.0},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":28,"docs":{"12":{"tf":3.3166247903554},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.0},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":3,"docs":{"237":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"238":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.7320508075688772},"223":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"234":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"237":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"237":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"238":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"237":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"234":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"238":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"236":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":1.7320508075688772},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":12,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"227":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":18,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"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":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":8,"docs":{"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"54":{"tf":2.8284271247461903},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"238":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.0}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":1.7320508075688772},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":13,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"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":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.0}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}},"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":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"237":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":2.449489742783178},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.0},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"231":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"223":{"tf":2.6457513110645907},"225":{"tf":3.4641016151377544},"226":{"tf":3.0},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":2.8284271247461903},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"151":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.0},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":13,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"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},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"231":{"tf":2.0},"234":{"tf":2.0},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"28":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":4,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"236":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":2.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"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":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.8284271247461903}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.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.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"45":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"237":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"237":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"227":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":2.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"238":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"234":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.23606797749979},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":2.0},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":2.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"234":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.23606797749979},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":2.0},"37":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"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},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":10,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":65,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"228":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"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":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":2.0},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"237":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":2.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.3166247903554},"207":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.7320508075688772}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":178,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"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},"238":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.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.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.1622776601683795},"226":{"tf":2.23606797749979},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"231":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"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":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"237":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"236":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"227":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"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},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"237":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"237":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":79,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"235":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"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.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":4,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.8284271247461903},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"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},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":7,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"234":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.4142135623730951}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"238":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.449489742783178},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"238":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.8284271247461903},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":222,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"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.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.7320508075688772},"228":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"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":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.7320508075688772},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"6":{"tf":2.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":10,"docs":{"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.4142135623730951},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":24,"docs":{"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},"222":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":145,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.4142135623730951},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":2.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"237":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.6457513110645907},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"237":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"235":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":13,"docs":{"101":{"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},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":5,"docs":{"19":{"tf":3.7416573867739413},"227":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":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":{"102":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"228":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":24,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":3.0},"238":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.4142135623730951},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.449489742783178},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"237":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.4142135623730951}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":17,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.7320508075688772}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":2.0},"42":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.0},"59":{"tf":1.0},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"237":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":2.0},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":149,"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"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.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"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":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"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},"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.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"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},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":157,"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},"12":{"tf":3.4641016151377544},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.23606797749979},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":3,"docs":{"237":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"238":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":2.23606797749979},"223":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"234":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"17":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"237":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"237":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"238":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":26,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":3.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"237":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"234":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":131,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"238":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"236":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":2.0},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":12,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"227":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":60,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"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":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":41,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":18,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"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":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":8,"docs":{"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"54":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"238":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":7,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":2.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":13,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"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":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"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":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"237":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.6457513110645907},"15":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.23606797749979},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.23606797749979},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"231":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":5,"docs":{"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.7320508075688772},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.23606797749979},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"223":{"tf":3.0},"224":{"tf":1.0},"225":{"tf":3.7416573867739413},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":2.0},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":3.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"151":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.23606797749979},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":2.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":13,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":56,"docs":{"1":{"tf":1.0},"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},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"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.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"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},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":2.0},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"231":{"tf":2.23606797749979},"234":{"tf":2.23606797749979},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":2.0},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":4,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"236":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"title":{"root":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"2":{"4":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"3":{"/":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"161":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}},"z":{"df":1,"docs":{"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":1,"docs":{"37":{"tf":1.4142135623730951}},"s":{"df":2,"docs":{"164":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"2":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"220":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.0},"45":{"tf":1.0}},"e":{"2":{"df":2,"docs":{"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"173":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"231":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"72":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"q":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"148":{"tf":1.0},"39":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"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":{"93":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"21":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":4,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"12":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"177":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"42":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"178":{"tf":1.0},"42":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":6,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"211":{"tf":1.0},"48":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"219":{"tf":1.0},"222":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":4,"docs":{"16":{"tf":1.0},"236":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"235":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"56":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"v":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"228":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"234":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}')); \ No newline at end of file diff --git a/docs/searchindex-57ec751f.js b/docs/searchindex-57ec751f.js new file mode 100644 index 000000000..d17ea7b43 --- /dev/null +++ b/docs/searchindex-57ec751f.js @@ -0,0 +1 @@ +window.search = Object.assign(window.search, JSON.parse('{"doc_urls":["welcome.html#welcome","welcome.html#target-audience","welcome.html#other-polkadot-contracts-resources","welcome.html#about","user_guide.html#resolc-user-guide","user_guide.html#revive-vs-resolc-nomenclature","user_guide/installation.html#installation","user_guide/installation.html#resolc-binary-releases","user_guide/installation.html#installing-the-solc-dependency","user_guide/installation.html#revive-npm-package","user_guide/installation.html#buidling-resolc-from-source","user_guide/cli.html#cli-usage","user_guide/cli.html#llvm-optimization-levels","user_guide/cli.html#newyork-ir-pipeline","user_guide/cli.html#stack-size","user_guide/cli.html#heap-size","user_guide/cli.html#solc","user_guide/cli.html#debug-artifacts","user_guide/cli.html#debug-info","user_guide/cli.html#deploy-time-linking","user_guide/js.html#js-npm-package","user_guide/tooling.html#tooling-integration","user_guide/tooling.html#solidity-toolkits","user_guide/tooling.html#compiler-explorer","user_guide/tooling.html#remix-ide","user_guide/std_json.html#standard-json-interface","user_guide/std_json.html#the-settingspolkavm-object","user_guide/std_json.html#settingspolkavmdebuginformation","user_guide/std_json.html#settingspolkavmnewyork","user_guide/std_json.html#the-settingspolkavmmemoryconfig-object","user_guide/std_json.html#the-settingsoptimizer-object","user_guide/std_json.html#settingsoptimizermode","user_guide/std_json.html#settingsllvmarguments","user_guide/std_json.html#the-settingsoutputselection-object","user_guide/std_json.html#the-all--wildcard","user_guide/std_json.html#the-contract-level-evm-output-selection","user_guide/differences.html#differences-to-evm","user_guide/differences.html#deploy-code-vs-runtime-code","user_guide/differences.html#solidity","user_guide/differences.html#the-6364-gas-rule","user_guide/differences.html#addresscreationcode","user_guide/differences.html#yul-functions","user_guide/differences.html#mload-mstore-msize-mcopy-memory-related-functions","user_guide/differences.html#calldataload-calldatacopy","user_guide/differences.html#codecopy","user_guide/differences.html#create-create2","user_guide/differences.html#dataoffset","user_guide/differences.html#datasize","user_guide/differences.html#revert-return","user_guide/differences.html#prevrandao-difficulty","user_guide/differences.html#pc-extcodecopy","user_guide/differences.html#blobhash-blobbasefee","user_guide/differences.html#difference-regarding-the-solc-via-ir-mode","user_guide/differences.html#example-state-variable-initialization-order-in-inheritance","user_guide/rust_libraries.html#rust-contract-libraries","revive_runner.html#revive-runner-sandbox","revive_runner.html#installation-and-usage","revive_runner.html#trace-logs","revive_runner.html#automatic-contract-instantiation","revive_runner.html#example","developer_guide.html#developer-guide","developer_guide/contributing.html#contributor-guide","developer_guide/contributing.html#getting-started","developer_guide/contributing.html#using-the-makefile","developer_guide/contributing.html#codebase-organization","developer_guide/contributing.html#contribution-rules","developer_guide/contributing.html#style-guide","developer_guide/contributing.html#ai-policy","developer_guide/architecture.html#compiler-architecture-and-internals","developer_guide/architecture.html#resolc","developer_guide/architecture.html#reproducible-contract-builds","developer_guide/architecture.html#the-revive-compiler-libraries","developer_guide/architecture.html#evm-heap-memory","developer_guide/architecture.html#the-llvm-dependency","developer_guide/architecture.html#custom-optimizations","developer_guide/newyork_optimizer.html#the-newyork-optimizer","developer_guide/newyork_optimizer.html#motivation","developer_guide/newyork_optimizer.html#pipeline-overview","developer_guide/newyork_optimizer.html#ir-design","developer_guide/newyork_optimizer.html#key-optimizations-explained","developer_guide/newyork_optimizer.html#type-narrowing","developer_guide/newyork_optimizer.html#guard-narrowing","developer_guide/newyork_optimizer.html#heap-optimization","developer_guide/newyork_optimizer.html#free-memory-pointer-range-proof","developer_guide/newyork_optimizer.html#soundness-traps-for-fmp-optimizations","developer_guide/newyork_optimizer.html#keccak256-fusion-and-folding","developer_guide/newyork_optimizer.html#compound-outlining-mapping-access","developer_guide/newyork_optimizer.html#fuzzy-function-deduplication","developer_guide/newyork_optimizer.html#revert-pattern-outlining","developer_guide/newyork_optimizer.html#outlined-helper-functions","developer_guide/newyork_optimizer.html#codesize-results","developer_guide/newyork_optimizer.html#integration-test-contracts","developer_guide/newyork_optimizer.html#openzeppelin-contracts","developer_guide/newyork_optimizer.html#development-history-and-challenges","developer_guide/newyork_optimizer.html#approaches-that-did-not-work","developer_guide/newyork_optimizer.html#known-limitations-and-future-work","developer_guide/newyork_optimizer.html#debug-output","developer_guide/newyork_optimizer.html#module-reference","developer_guide/newyork_ir.html#newyork-ir-reference","developer_guide/newyork_ir.html#how-to-read-this-reference","developer_guide/newyork_ir.html#entry-format","developer_guide/newyork_ir.html#syntax-notation","developer_guide/newyork_ir.html#operation-index","developer_guide/newyork_ir.html#type-system","developer_guide/newyork_ir.html#type","developer_guide/newyork_ir.html#bitwidth","developer_guide/newyork_ir.html#addressspace","developer_guide/newyork_ir.html#memoryregion","developer_guide/newyork_ir.html#pure-expressions-1","developer_guide/newyork_ir.html#0xhex","developer_guide/newyork_ir.html#vid","developer_guide/newyork_ir.html#add","developer_guide/newyork_ir.html#sub","developer_guide/newyork_ir.html#mul","developer_guide/newyork_ir.html#div","developer_guide/newyork_ir.html#sdiv","developer_guide/newyork_ir.html#mod","developer_guide/newyork_ir.html#smod","developer_guide/newyork_ir.html#exp","developer_guide/newyork_ir.html#and","developer_guide/newyork_ir.html#or","developer_guide/newyork_ir.html#xor","developer_guide/newyork_ir.html#shl","developer_guide/newyork_ir.html#shr","developer_guide/newyork_ir.html#sar","developer_guide/newyork_ir.html#lt","developer_guide/newyork_ir.html#gt","developer_guide/newyork_ir.html#slt","developer_guide/newyork_ir.html#sgt","developer_guide/newyork_ir.html#eq","developer_guide/newyork_ir.html#byte","developer_guide/newyork_ir.html#signextend","developer_guide/newyork_ir.html#addmod","developer_guide/newyork_ir.html#mulmod","developer_guide/newyork_ir.html#iszero","developer_guide/newyork_ir.html#not","developer_guide/newyork_ir.html#clz","developer_guide/newyork_ir.html#truncateibits","developer_guide/newyork_ir.html#zextibits","developer_guide/newyork_ir.html#sextibits","developer_guide/newyork_ir.html#keccak256","developer_guide/newyork_ir.html#keccak256_pair","developer_guide/newyork_ir.html#keccak256_single","developer_guide/newyork_ir.html#caller","developer_guide/newyork_ir.html#callvalue","developer_guide/newyork_ir.html#origin","developer_guide/newyork_ir.html#address","developer_guide/newyork_ir.html#chainid","developer_guide/newyork_ir.html#gas","developer_guide/newyork_ir.html#msize","developer_guide/newyork_ir.html#coinbase","developer_guide/newyork_ir.html#timestamp","developer_guide/newyork_ir.html#number","developer_guide/newyork_ir.html#difficulty","developer_guide/newyork_ir.html#gaslimit","developer_guide/newyork_ir.html#basefee","developer_guide/newyork_ir.html#blobbasefee","developer_guide/newyork_ir.html#blobhash","developer_guide/newyork_ir.html#blockhash","developer_guide/newyork_ir.html#selfbalance","developer_guide/newyork_ir.html#gasprice","developer_guide/newyork_ir.html#calldataload","developer_guide/newyork_ir.html#calldatasize","developer_guide/newyork_ir.html#returndatasize","developer_guide/newyork_ir.html#codesize","developer_guide/newyork_ir.html#extcodesize","developer_guide/newyork_ir.html#extcodehash","developer_guide/newyork_ir.html#balance","developer_guide/newyork_ir.html#mload","developer_guide/newyork_ir.html#sload","developer_guide/newyork_ir.html#tload","developer_guide/newyork_ir.html#mapping_sload","developer_guide/newyork_ir.html#dataoffset","developer_guide/newyork_ir.html#datasize","developer_guide/newyork_ir.html#loadimmutable","developer_guide/newyork_ir.html#linkersymbol","developer_guide/newyork_ir.html#func_name","developer_guide/newyork_ir.html#memory-and-storage-writes-1","developer_guide/newyork_ir.html#mstore","developer_guide/newyork_ir.html#mstore8","developer_guide/newyork_ir.html#mcopy","developer_guide/newyork_ir.html#sstore","developer_guide/newyork_ir.html#tstore","developer_guide/newyork_ir.html#mapping_sstore","developer_guide/newyork_ir.html#bulk-copies-1","developer_guide/newyork_ir.html#codecopy","developer_guide/newyork_ir.html#extcodecopy","developer_guide/newyork_ir.html#returndatacopy","developer_guide/newyork_ir.html#datacopy","developer_guide/newyork_ir.html#calldatacopy","developer_guide/newyork_ir.html#bindings-and-wrappers-1","developer_guide/newyork_ir.html#let","developer_guide/newyork_ir.html#expression-statement","developer_guide/newyork_ir.html#setimmutable","developer_guide/newyork_ir.html#structured-control-flow-1","developer_guide/newyork_ir.html#if","developer_guide/newyork_ir.html#switch","developer_guide/newyork_ir.html#for","developer_guide/newyork_ir.html#break","developer_guide/newyork_ir.html#continue","developer_guide/newyork_ir.html#leave","developer_guide/newyork_ir.html#nested-block","developer_guide/newyork_ir.html#external-interaction-1","developer_guide/newyork_ir.html#call","developer_guide/newyork_ir.html#callcode","developer_guide/newyork_ir.html#delegatecall","developer_guide/newyork_ir.html#staticcall","developer_guide/newyork_ir.html#create","developer_guide/newyork_ir.html#create2","developer_guide/newyork_ir.html#logn","developer_guide/newyork_ir.html#termination-1","developer_guide/newyork_ir.html#return","developer_guide/newyork_ir.html#revert","developer_guide/newyork_ir.html#stop","developer_guide/newyork_ir.html#invalid","developer_guide/newyork_ir.html#selfdestruct","developer_guide/newyork_ir.html#panic_revert","developer_guide/newyork_ir.html#error_string_revert","developer_guide/newyork_ir.html#custom_error_revert","developer_guide/target.html#pvm-and-the-pallet-revive-runtime-target","developer_guide/target.html#target-cpu-configuration","developer_guide/target.html#why-pvm","developer_guide/target.html#host-environment-pallet-revive","developer_guide/testing.html#testing-strategy","developer_guide/testing.html#bug-compatibility-with-ethereum-solidity","developer_guide/testing.html#differential-integration-tests","developer_guide/testing.html#the-differential-testing-utility","developer_guide/coverage.html#code-coverage","developer_guide/coverage.html#running-locally","developer_guide/coverage.html#resource-requirements-and-troubleshooting","developer_guide/cross_compilation.html#cross-compilation","developer_guide/cross_compilation.html#wasm-via-emscripten","developer_guide/cross_compilation.html#musl-libc","faq.html#faq","faq.html#what-evm-version-do-you-support","faq.html#is-inline-assembly-supported","faq.html#do-you-support-opcode-xy","faq.html#in-what-solidity-version-should-i-write-my-dapp","faq.html#tool-xy-says-the-contract-size-is-larger-than-24kb-and-will-fail-to-deploy","faq.html#is-resolc-a-drop-in-replacement-for-solc","roadmap.html#vision-and-roadmap","roadmap.html#roadmap"],"index":{"documentStore":{"docInfo":{"0":{"body":74,"breadcrumbs":2,"title":1},"1":{"body":22,"breadcrumbs":3,"title":2},"10":{"body":6,"breadcrumbs":7,"title":3},"100":{"body":174,"breadcrumbs":8,"title":2},"101":{"body":235,"breadcrumbs":8,"title":2},"102":{"body":133,"breadcrumbs":8,"title":2},"103":{"body":25,"breadcrumbs":8,"title":2},"104":{"body":36,"breadcrumbs":7,"title":1},"105":{"body":91,"breadcrumbs":7,"title":1},"106":{"body":61,"breadcrumbs":7,"title":1},"107":{"body":80,"breadcrumbs":7,"title":1},"108":{"body":42,"breadcrumbs":8,"title":2},"109":{"body":78,"breadcrumbs":7,"title":1},"11":{"body":33,"breadcrumbs":8,"title":2},"110":{"body":56,"breadcrumbs":7,"title":1},"111":{"body":51,"breadcrumbs":7,"title":1},"112":{"body":47,"breadcrumbs":7,"title":1},"113":{"body":47,"breadcrumbs":7,"title":1},"114":{"body":49,"breadcrumbs":7,"title":1},"115":{"body":58,"breadcrumbs":7,"title":1},"116":{"body":40,"breadcrumbs":7,"title":1},"117":{"body":48,"breadcrumbs":7,"title":1},"118":{"body":51,"breadcrumbs":7,"title":1},"119":{"body":59,"breadcrumbs":6,"title":0},"12":{"body":59,"breadcrumbs":9,"title":3},"120":{"body":30,"breadcrumbs":6,"title":0},"121":{"body":31,"breadcrumbs":7,"title":1},"122":{"body":53,"breadcrumbs":7,"title":1},"123":{"body":65,"breadcrumbs":7,"title":1},"124":{"body":73,"breadcrumbs":7,"title":1},"125":{"body":41,"breadcrumbs":7,"title":1},"126":{"body":41,"breadcrumbs":7,"title":1},"127":{"body":40,"breadcrumbs":7,"title":1},"128":{"body":40,"breadcrumbs":7,"title":1},"129":{"body":38,"breadcrumbs":7,"title":1},"13":{"body":42,"breadcrumbs":9,"title":3},"130":{"body":59,"breadcrumbs":7,"title":1},"131":{"body":76,"breadcrumbs":7,"title":1},"132":{"body":57,"breadcrumbs":7,"title":1},"133":{"body":57,"breadcrumbs":7,"title":1},"134":{"body":33,"breadcrumbs":7,"title":1},"135":{"body":38,"breadcrumbs":6,"title":0},"136":{"body":61,"breadcrumbs":7,"title":1},"137":{"body":67,"breadcrumbs":7,"title":1},"138":{"body":45,"breadcrumbs":7,"title":1},"139":{"body":66,"breadcrumbs":7,"title":1},"14":{"body":62,"breadcrumbs":8,"title":2},"140":{"body":83,"breadcrumbs":7,"title":1},"141":{"body":68,"breadcrumbs":7,"title":1},"142":{"body":42,"breadcrumbs":7,"title":1},"143":{"body":24,"breadcrumbs":7,"title":1},"144":{"body":22,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":24,"breadcrumbs":7,"title":1},"147":{"body":22,"breadcrumbs":7,"title":1},"148":{"body":42,"breadcrumbs":7,"title":1},"149":{"body":54,"breadcrumbs":7,"title":1},"15":{"body":75,"breadcrumbs":8,"title":2},"150":{"body":23,"breadcrumbs":7,"title":1},"151":{"body":23,"breadcrumbs":7,"title":1},"152":{"body":21,"breadcrumbs":7,"title":1},"153":{"body":27,"breadcrumbs":7,"title":1},"154":{"body":21,"breadcrumbs":7,"title":1},"155":{"body":25,"breadcrumbs":7,"title":1},"156":{"body":26,"breadcrumbs":7,"title":1},"157":{"body":37,"breadcrumbs":7,"title":1},"158":{"body":42,"breadcrumbs":7,"title":1},"159":{"body":26,"breadcrumbs":7,"title":1},"16":{"body":10,"breadcrumbs":7,"title":1},"160":{"body":22,"breadcrumbs":7,"title":1},"161":{"body":40,"breadcrumbs":7,"title":1},"162":{"body":23,"breadcrumbs":7,"title":1},"163":{"body":42,"breadcrumbs":7,"title":1},"164":{"body":23,"breadcrumbs":7,"title":1},"165":{"body":41,"breadcrumbs":7,"title":1},"166":{"body":41,"breadcrumbs":7,"title":1},"167":{"body":42,"breadcrumbs":7,"title":1},"168":{"body":101,"breadcrumbs":7,"title":1},"169":{"body":84,"breadcrumbs":7,"title":1},"17":{"body":43,"breadcrumbs":8,"title":2},"170":{"body":49,"breadcrumbs":7,"title":1},"171":{"body":98,"breadcrumbs":7,"title":1},"172":{"body":54,"breadcrumbs":7,"title":1},"173":{"body":44,"breadcrumbs":7,"title":1},"174":{"body":47,"breadcrumbs":7,"title":1},"175":{"body":43,"breadcrumbs":7,"title":1},"176":{"body":134,"breadcrumbs":7,"title":1},"177":{"body":32,"breadcrumbs":9,"title":3},"178":{"body":110,"breadcrumbs":7,"title":1},"179":{"body":101,"breadcrumbs":7,"title":1},"18":{"body":15,"breadcrumbs":8,"title":2},"180":{"body":95,"breadcrumbs":7,"title":1},"181":{"body":107,"breadcrumbs":7,"title":1},"182":{"body":88,"breadcrumbs":7,"title":1},"183":{"body":112,"breadcrumbs":7,"title":1},"184":{"body":34,"breadcrumbs":8,"title":2},"185":{"body":63,"breadcrumbs":7,"title":1},"186":{"body":81,"breadcrumbs":7,"title":1},"187":{"body":80,"breadcrumbs":7,"title":1},"188":{"body":69,"breadcrumbs":7,"title":1},"189":{"body":63,"breadcrumbs":7,"title":1},"19":{"body":236,"breadcrumbs":9,"title":3},"190":{"body":25,"breadcrumbs":8,"title":2},"191":{"body":98,"breadcrumbs":6,"title":0},"192":{"body":80,"breadcrumbs":8,"title":2},"193":{"body":58,"breadcrumbs":7,"title":1},"194":{"body":35,"breadcrumbs":9,"title":3},"195":{"body":119,"breadcrumbs":6,"title":0},"196":{"body":107,"breadcrumbs":7,"title":1},"197":{"body":211,"breadcrumbs":6,"title":0},"198":{"body":47,"breadcrumbs":7,"title":1},"199":{"body":45,"breadcrumbs":7,"title":1},"2":{"body":7,"breadcrumbs":4,"title":3},"20":{"body":31,"breadcrumbs":9,"title":3},"200":{"body":73,"breadcrumbs":7,"title":1},"201":{"body":48,"breadcrumbs":8,"title":2},"202":{"body":20,"breadcrumbs":8,"title":2},"203":{"body":147,"breadcrumbs":7,"title":1},"204":{"body":68,"breadcrumbs":7,"title":1},"205":{"body":74,"breadcrumbs":7,"title":1},"206":{"body":70,"breadcrumbs":7,"title":1},"207":{"body":85,"breadcrumbs":7,"title":1},"208":{"body":61,"breadcrumbs":7,"title":1},"209":{"body":94,"breadcrumbs":7,"title":1},"21":{"body":9,"breadcrumbs":7,"title":2},"210":{"body":30,"breadcrumbs":7,"title":1},"211":{"body":62,"breadcrumbs":7,"title":1},"212":{"body":68,"breadcrumbs":7,"title":1},"213":{"body":28,"breadcrumbs":7,"title":1},"214":{"body":33,"breadcrumbs":7,"title":1},"215":{"body":55,"breadcrumbs":7,"title":1},"216":{"body":89,"breadcrumbs":7,"title":1},"217":{"body":100,"breadcrumbs":7,"title":1},"218":{"body":91,"breadcrumbs":7,"title":1},"219":{"body":9,"breadcrumbs":12,"title":5},"22":{"body":14,"breadcrumbs":7,"title":2},"220":{"body":14,"breadcrumbs":10,"title":3},"221":{"body":199,"breadcrumbs":8,"title":1},"222":{"body":34,"breadcrumbs":11,"title":4},"223":{"body":63,"breadcrumbs":6,"title":2},"224":{"body":34,"breadcrumbs":8,"title":4},"225":{"body":187,"breadcrumbs":7,"title":3},"226":{"body":73,"breadcrumbs":7,"title":3},"227":{"body":46,"breadcrumbs":6,"title":2},"228":{"body":87,"breadcrumbs":6,"title":2},"229":{"body":153,"breadcrumbs":7,"title":3},"23":{"body":11,"breadcrumbs":7,"title":2},"230":{"body":19,"breadcrumbs":6,"title":2},"231":{"body":69,"breadcrumbs":7,"title":3},"232":{"body":12,"breadcrumbs":6,"title":2},"233":{"body":0,"breadcrumbs":2,"title":1},"234":{"body":12,"breadcrumbs":4,"title":3},"235":{"body":10,"breadcrumbs":4,"title":3},"236":{"body":4,"breadcrumbs":4,"title":3},"237":{"body":25,"breadcrumbs":5,"title":4},"238":{"body":13,"breadcrumbs":9,"title":8},"239":{"body":9,"breadcrumbs":5,"title":4},"24":{"body":14,"breadcrumbs":7,"title":2},"240":{"body":66,"breadcrumbs":4,"title":2},"241":{"body":49,"breadcrumbs":3,"title":1},"25":{"body":15,"breadcrumbs":9,"title":3},"26":{"body":6,"breadcrumbs":8,"title":2},"27":{"body":9,"breadcrumbs":7,"title":1},"28":{"body":31,"breadcrumbs":7,"title":1},"29":{"body":31,"breadcrumbs":8,"title":2},"3":{"body":15,"breadcrumbs":1,"title":0},"30":{"body":8,"breadcrumbs":8,"title":2},"31":{"body":10,"breadcrumbs":7,"title":1},"32":{"body":13,"breadcrumbs":7,"title":1},"33":{"body":4,"breadcrumbs":8,"title":2},"34":{"body":63,"breadcrumbs":7,"title":1},"35":{"body":83,"breadcrumbs":11,"title":5},"36":{"body":23,"breadcrumbs":7,"title":2},"37":{"body":41,"breadcrumbs":10,"title":5},"38":{"body":6,"breadcrumbs":6,"title":1},"39":{"body":18,"breadcrumbs":8,"title":3},"4":{"body":43,"breadcrumbs":6,"title":3},"40":{"body":5,"breadcrumbs":6,"title":1},"41":{"body":58,"breadcrumbs":7,"title":2},"42":{"body":64,"breadcrumbs":12,"title":7},"43":{"body":16,"breadcrumbs":7,"title":2},"44":{"body":3,"breadcrumbs":6,"title":1},"45":{"body":101,"breadcrumbs":7,"title":2},"46":{"body":3,"breadcrumbs":6,"title":1},"47":{"body":7,"breadcrumbs":6,"title":1},"48":{"body":8,"breadcrumbs":7,"title":2},"49":{"body":4,"breadcrumbs":7,"title":2},"5":{"body":52,"breadcrumbs":7,"title":4},"50":{"body":10,"breadcrumbs":7,"title":2},"51":{"body":20,"breadcrumbs":7,"title":2},"52":{"body":24,"breadcrumbs":11,"title":6},"53":{"body":57,"breadcrumbs":11,"title":6},"54":{"body":167,"breadcrumbs":9,"title":3},"55":{"body":36,"breadcrumbs":6,"title":3},"56":{"body":21,"breadcrumbs":5,"title":2},"57":{"body":38,"breadcrumbs":5,"title":2},"58":{"body":15,"breadcrumbs":6,"title":3},"59":{"body":120,"breadcrumbs":4,"title":1},"6":{"body":24,"breadcrumbs":5,"title":1},"60":{"body":11,"breadcrumbs":4,"title":2},"61":{"body":11,"breadcrumbs":6,"title":2},"62":{"body":8,"breadcrumbs":6,"title":2},"63":{"body":39,"breadcrumbs":6,"title":2},"64":{"body":85,"breadcrumbs":6,"title":2},"65":{"body":44,"breadcrumbs":6,"title":2},"66":{"body":107,"breadcrumbs":6,"title":2},"67":{"body":112,"breadcrumbs":6,"title":2},"68":{"body":58,"breadcrumbs":7,"title":3},"69":{"body":55,"breadcrumbs":5,"title":1},"7":{"body":21,"breadcrumbs":7,"title":3},"70":{"body":76,"breadcrumbs":7,"title":3},"71":{"body":65,"breadcrumbs":7,"title":3},"72":{"body":57,"breadcrumbs":7,"title":3},"73":{"body":69,"breadcrumbs":6,"title":2},"74":{"body":49,"breadcrumbs":6,"title":2},"75":{"body":44,"breadcrumbs":6,"title":2},"76":{"body":84,"breadcrumbs":5,"title":1},"77":{"body":372,"breadcrumbs":6,"title":2},"78":{"body":116,"breadcrumbs":6,"title":2},"79":{"body":0,"breadcrumbs":7,"title":3},"8":{"body":13,"breadcrumbs":7,"title":3},"80":{"body":182,"breadcrumbs":6,"title":2},"81":{"body":72,"breadcrumbs":6,"title":2},"82":{"body":118,"breadcrumbs":6,"title":2},"83":{"body":147,"breadcrumbs":9,"title":5},"84":{"body":349,"breadcrumbs":8,"title":4},"85":{"body":148,"breadcrumbs":7,"title":3},"86":{"body":43,"breadcrumbs":8,"title":4},"87":{"body":32,"breadcrumbs":7,"title":3},"88":{"body":56,"breadcrumbs":7,"title":3},"89":{"body":84,"breadcrumbs":7,"title":3},"9":{"body":5,"breadcrumbs":7,"title":3},"90":{"body":0,"breadcrumbs":6,"title":2},"91":{"body":67,"breadcrumbs":7,"title":3},"92":{"body":79,"breadcrumbs":6,"title":2},"93":{"body":216,"breadcrumbs":7,"title":3},"94":{"body":137,"breadcrumbs":6,"title":2},"95":{"body":137,"breadcrumbs":8,"title":4},"96":{"body":67,"breadcrumbs":6,"title":2},"97":{"body":139,"breadcrumbs":6,"title":2},"98":{"body":16,"breadcrumbs":9,"title":3},"99":{"body":74,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Hello and a warm welcome to the revive Solidity compiler book! Warning Solidity on PVM is running on the pallet-revive runtime. This introduces observable semantic differences in comparison with the EVM. Study the differences section carefully. Ignoring these differences may lead to defunct contracts. Notable examples: The 63/64 gas rule isn’t implemented in the pallet (introduces potential DoS vector when calling other contracts) Contract instantiation works differently (by hash instead of by code) The gas model implemented by pallet-revive differs from Ethereum The heap size is fixed instead of gas-metered and there’s a fixed amount of stack size (contracts working fine on EVM may trap on PVM)","breadcrumbs":"Welcome » Welcome","id":"0","title":"Welcome"},"1":{"body":"Solidity dApp developers should read the user guide. Solidity on PolkaVM introduces important differences to EVM which should be well understood. Contributors will find the developer guide helpful for getting up to speed.","breadcrumbs":"Welcome » Target audience","id":"1","title":"Target audience"},"10":{"body":"Please follow the build instructions in the revive README.md.","breadcrumbs":"resolc user guide » Installation » Buidling resolc from source","id":"10","title":"Buidling resolc from source"},"100":{"body":"Each operation entry has the same shape: Field What it shows Heading The printed operation name (e.g. mstore) followed by the Expression or Statement variant it corresponds to in ir.rs. Description A short prose summary of what the operation does and any semantic notes worth knowing before reading the rest of the entry. Syntax The literal printer output, including any optional debug annotations (region tags, static-slot comments). Anything inside /* ... */ is a debug-only annotation and is not part of the operation itself. Example A minimal printed snippet, using the printer’s actual v0/ v1/… naming. Operands One row per input or structural participant in the printed syntax. Value operands list the narrowest type the operation guarantees (default i256; narrower widths only appear when type inference has narrowed an upstream definition). Vector-of-operands fields show Vec<…> as the type. Non-value participants such as nested regions are listed with an em-dash type to mark them as structural rather than as operands. Result and purity The type the operation produces (or none for statements that bind no value), followed by a purity label, either Pure or Effectful. Pure operations may be reordered, deduplicated, or eliminated by the simplifier; effectful ones may not. Effectful entries may carry a parenthetical describing the nature of the side effect when informative (e.g. “control flow”, “terminator”, or a note about revert/trap behavior). Annotations Operation-specific fields the printer surfaces as /* ... */ comments in the dump (region tag for memory ops, static-slot hint for storage ops, type suffix for non-default widths). Listed here as a table of source field → printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Entry format","id":"100","title":"Entry format"},"101":{"body":"Syntax templates in each entry use the following conventions: Notation Meaning add, mload, if, else, case, let, yield, … Literal printer tokens: bare lowercase identifiers and keywords that the printer emits verbatim. $offset, $value, $key, $lhs, $rhs, … Role names ( $-prefixed): placeholders for SSA value references the printer renders as v followed by a decimal id ( v0, v1, …). , , , , , , , , … Metavariables: stand for compile-time fields (type tags, hex values, identifier strings, integer counts), not SSA values. The concrete values they take are enumerated in the Annotations section of each entry or in the type system reference. […] Optional parts. Anything inside the brackets may or may not appear in any given dump, depending on the conditions described in the operation’s Annotations section. [: ] Optional type suffix on a value reference. Suppressed when the value’s type is the default i256 integer; present otherwise ( : i32, : ptr, …). /* … */ Debug-only annotations the printer attaches to certain operations (memory region tag, static-slot hint, etc.). … Repetition: “more entries of the same shape.” Used in vector operand lists ( $arg_0, $arg_1, …) and in multi-line block bodies ( { … }). For instance, this template: let $result[: ] := and($lhs[: ], $rhs[: ]) prints as: let v2: i8 := and(v0, v1: i8) $result rendered as v2 with an i8 type suffix, $lhs as v0 at the default i256 (type suffix omitted), and $rhs as v1 with an i8 type suffix. Note A value’s printed width is use-driven. Type inference assigns each value a forward width from its definition, then widens it to satisfy its uses. The type suffix shown for a value in an example (such as i8) is therefore only illustrative — a short example may not show the uses that determine it, and the same operation can appear with a wider suffix, or none (it is omitted for the default i256), in another program. For instance, a value used as a memory offset widens to i64; as an address (a call target, extcodesize) to i160; stored as a full word (an mstore/ sstore value) to i256; and an add/ mul operand up to the i64 register width.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Syntax notation","id":"101","title":"Syntax notation"},"102":{"body":"Pure expressions Constants and variables 0x v Arithmetic add sub mul div sdiv mod smod exp and or xor shl shr sar lt gt slt sgt eq byte signextend addmod mulmod iszero not clz Bit-width conversions truncate> zext> sext> Hashing keccak256 keccak256_pair keccak256_single Environment reads caller callvalue origin address chainid gas msize coinbase timestamp number difficulty gaslimit basefee blobbasefee blobhash blockhash selfbalance gasprice Calldata, returndata, and code calldataload calldatasize returndatasize codesize extcodesize extcodehash balance Memory and storage loads mload sload tload mapping_sload Linker dataoffset datasize loadimmutable linkersymbol Function call Memory and storage writes mstore mstore8 mcopy sstore tstore mapping_sstore Bulk copies codecopy extcodecopy returndatacopy datacopy calldatacopy Bindings and wrappers let expression statement setimmutable Structured control flow if switch for break continue leave nested block External interaction call callcode delegatecall staticcall create create2 log Termination return revert stop invalid selfdestruct panic_revert error_string_revert custom_error_revert","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Operation index","id":"102","title":"Operation index"},"103":{"body":"Every value in the IR carries a Type. The operation entries below refer to widths ( i1… i256), address spaces ( ptr, etc.), and memory regions ( scratch, etc.) by their printed form; this section is the reference for those names.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type system","id":"103","title":"Type system"},"104":{"body":"The umbrella enum, with these variants: Variant Printed as Description Int(BitWidth) i1, i8, …, i256 An integer at one of the BitWidth widths. Ptr(AddressSpace) ptr, ptr, ptr, ptr A pointer tagged with its address space; see AddressSpace. Void void Unit type. Used for statements that produce no value and for void-returning functions.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type","id":"104","title":"Type"},"105":{"body":"The rungs of integer width. Newly minted values default to I256; type inference narrows them down to one of the lower rungs when it can prove the upper bits are zero or unused. Variant Printed as Typical use I1 i1 Boolean. Result type of every comparison and iszero. I8 i8 Byte values. The narrowest meaningful integer. I32 i32 PolkaVM pointer width (XLEN); minimum width for function parameters under the rv64e ABI. I64 i64 PolkaVM native register width; most narrowed values land here. I128 i128 Two registers; arithmetic that overflows i64 but doesn’t need full 256-bit emulation. I160 i160 Ethereum addresses; result of caller, origin, mapping keys. I256 i256 EVM word width. The default and conservative ceiling.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » BitWidth","id":"105","title":"BitWidth"},"106":{"body":"The address space a pointer points into. Carried on every Ptr value so the codegen can lower loads and stores without a separate alias-analysis pass. Variant Printed as Points into Endianness Heap ptr Emulated EVM linear memory (the simulated mload/ mstore region). Big-endian (by EVM contract). Stack ptr Native PolkaVM stack allocations. Little-endian (no swap). Storage ptr Contract storage; key/value with 256-bit slots. Big-endian on the wire. Code ptr Read-only code/data segment. Big-endian.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » AddressSpace","id":"106","title":"AddressSpace"},"107":{"body":"A refinement carried by every memory load and store on top of AddressSpace::Heap. The tag tells later passes what kind of heap address an offset is hitting, which drives both free-memory-pointer propagation and byte-swap elimination. Variant Address range Printed as Meaning Scratch 0x00– 0x3f /* scratch */ EVM scratch space; safe to touch without consulting the free memory pointer. FreePointerSlot exactly 0x40 /* free_ptr */ Slot that stores the free memory pointer itself. Dynamic 0x80 and above /* dynamic */ Real heap allocations. Unknown everything else (constants in 0x41– 0x7f, plus all non-constant offsets) (suppressed) Conservative fallback used when the offset isn’t a constant or doesn’t slot cleanly.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » MemoryRegion","id":"107","title":"MemoryRegion"},"108":{"body":"Pure expressions produce values without side effects. The simplifier may freely reorder, deduplicate, and eliminate them. They appear on the right-hand side of a let binding, or as operands of other expressions and effectful statements; the operand positions accept SSA value references only, so any pure expression that is consumed elsewhere is first bound by a let. Examples in this section wrap each expression in a let v := … to give it somewhere to land.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Pure expressions","id":"108","title":"Pure expressions"},"109":{"body":"( Expression::Literal) Description A compile-time constant value with a declared type. New literals minted by the translator default to Int(I256); passes that synthesize constants at narrower widths (e.g. a one-bit boolean from a constant comparison) attach the narrower type directly. Syntax 0x[: ] Example let v0: i8 := 0x2a\\nlet v1: i1 := 0x1 // boolean true\\nlet v2: i64 := 0x80 Operands None — literals are leaves. Result and purity Result Purity Same as the literal’s value_type Pure Annotations Source field Printed as value: BigUint 0x in the syntax position (not a comment annotation; it is the expression itself) value_type: Type : suffix when value_type is not the default Int(I256); suppressed otherwise","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » 0x","id":"109","title":"0x"},"11":{"body":"We aim to keep the resolc CLI usage close to solc. There are a few things and options worthwhile to know about in resolc which do not exist in the Ethereum world. This chapter explains those in more detail than the CLI help message. Tip For the complete help about CLI options, please see resolc --help.","breadcrumbs":"resolc user guide » Command Line Interface » CLI usage","id":"11","title":"CLI usage"},"110":{"body":"( Expression::Var) Description A reference to an existing SSA value, used as the entire right-hand side of a let. In a typical dump this is rare because the simplifier collapses let v := v into the consumers of v via copy propagation; expect to see it only in dumps taken before simplification has run. Syntax v Example let v5 := v3 // copy; usually eliminated by simplify Operands None — the expression is the value reference itself. Result and purity Result Purity Same as the referenced value’s type Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » v","id":"110","title":"v"},"111":{"body":"( Expression::Binary with BinaryOperation::Add) Description Modular addition. Wraps on overflow; per EVM, the result is (lhs + rhs) mod 2^N where N is the operand width. Syntax add($lhs[: ], $rhs[: ]) Example let v2 := add(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity widen_by_one(max(width(lhs), width(rhs))) — one tier above the wider operand to account for the carry bit Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » add","id":"111","title":"add"},"112":{"body":"( Expression::Binary with BinaryOperation::Sub) Description Modular subtraction. Wraps on underflow; the result is (lhs - rhs) mod 2^256 regardless of operand widths. Syntax sub($lhs[: ], $rhs[: ]) Example let v2 := sub(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i256 — conservative; underflow on narrower operands could borrow into upper bits Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sub","id":"112","title":"sub"},"113":{"body":"( Expression::Binary with BinaryOperation::Mul) Description Modular multiplication. The result is (lhs * rhs) mod 2^256. Syntax mul($lhs[: ], $rhs[: ]) Example let v2 := mul(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity double_width(max(width(lhs), width(rhs))) — the tier holding twice the wider operand’s bits (skipping i160 at the i128 → i256 transition) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mul","id":"113","title":"mul"},"114":{"body":"( Expression::Binary with BinaryOperation::Div) Description Unsigned integer division. Per EVM, div(x, 0) = 0 (no trap on division by zero). Syntax div($lhs[: ], $rhs[: ]) Example let v2 := div(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields a result of 0, not a trap. Result and purity Result Purity width(lhs) — the quotient cannot exceed the dividend Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » div","id":"114","title":"div"},"115":{"body":"( Expression::Binary with BinaryOperation::SDiv) Description Signed two’s-complement integer division. Per EVM, sdiv(x, 0) = 0; quotient is truncated toward zero. Syntax sdiv($lhs[: ], $rhs[: ]) Example let v2 := sdiv(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity max(width(lhs), width(rhs)) — a negative divisor can push the result to full width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sdiv","id":"115","title":"sdiv"},"116":{"body":"( Expression::Binary with BinaryOperation::Mod) Description Unsigned modulo. Per EVM, mod(x, 0) = 0. Syntax mod($lhs[: ], $rhs[: ]) Example let v2 := mod(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mod","id":"116","title":"mod"},"117":{"body":"( Expression::Binary with BinaryOperation::SMod) Description Signed modulo. Per EVM, smod(x, 0) = 0; the result takes the sign of the dividend. Syntax smod($lhs[: ], $rhs[: ]) Example let v2 := smod(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » smod","id":"117","title":"smod"},"118":{"body":"( Expression::Binary with BinaryOperation::Exp) Description Modular exponentiation: (base ^ exponent) mod 2^256. The most expensive arithmetic opcode in EVM (variable gas cost proportional to the byte length of exponent). Syntax exp($base[: ], $exponent[: ]) Example let v2 := exp(v0, v1) Operands Name Type Notes base i256 Base. exponent i256 Exponent. Result and purity Result Purity i256 — conservative; exponentiation can fill any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » exp","id":"118","title":"exp"},"119":{"body":"( Expression::Binary with BinaryOperation::And) Description Bitwise AND. The common idiom for type narrowing: a constant mask on the right lets forward analysis pick up a tight result width. Syntax and($lhs[: ], $rhs[: ]) Example let v2 := and(v0, v1)\\nlet v3: i8 := 0xff\\nlet v4: i8 := and(v0, v3: i8) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity min(width(lhs), width(rhs)) — AND can only clear bits, so the result fits in the narrower operand Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » and","id":"119","title":"and"},"12":{"body":"-O, --optimization resolc exposes the optimization level setting for the LLVM backend. The performance and size of compiled contracts varies widely between different optimization levels. (This is independent of --newyork which selects the IR lowering pipeline.) Valid levels are the following: 0: No optimizations are applied. 1: Basic optimizations for execution time. 2: Advanced optimizations for execution time. 3: Aggressive optimizations for execution time. s: Optimize for code size. z: Aggressively optimize for code size. By default, -Oz is applied.","breadcrumbs":"resolc user guide » Command Line Interface » LLVM optimization levels","id":"12","title":"LLVM optimization levels"},"120":{"body":"( Expression::Binary with BinaryOperation::Or) Description Bitwise OR. Syntax or($lhs[: ], $rhs[: ]) Example let v2 := or(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » or","id":"120","title":"or"},"121":{"body":"( Expression::Binary with BinaryOperation::Xor) Description Bitwise XOR. Syntax xor($lhs[: ], $rhs[: ]) Example let v2 := xor(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » xor","id":"121","title":"xor"},"122":{"body":"( Expression::Binary with BinaryOperation::Shl) Description Logical left shift. Operand order follows EVM: shl(shift, value) computes value << shift. Shifts ≥ 256 produce 0. Syntax shl($shift[: ], $value[: ]) Example let v2 := shl(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity i256 — conservative; bits may shift into any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shl","id":"122","title":"shl"},"123":{"body":"( Expression::Binary with BinaryOperation::Shr) Description Logical right shift. Operand order follows EVM: shr(shift, value) computes value >> shift with zero-fill from the left. Shifts ≥ 256 produce 0. Syntax shr($shift[: ], $value[: ]) Example let v2 := shr(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity If shift is a known constant k: tier holding 256 - k bits (or i1 for k ≥ 256). Otherwise: width(value). Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shr","id":"123","title":"shr"},"124":{"body":"( Expression::Binary with BinaryOperation::Sar) Description Arithmetic (signed) right shift. Operand order follows EVM: sar(shift, value) shifts value right by shift bits, preserving the sign bit. Shifts ≥ 256 saturate to 0 for non-negative values and to -1 (all-ones) for negative values. Syntax sar($shift[: ], $value[: ]) Example let v2 := sar(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift, treated as signed. Result and purity Result Purity width(value) — unlike shr, sign-extension means a constant shift cannot narrow the result Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sar","id":"124","title":"sar"},"125":{"body":"( Expression::Binary with BinaryOperation::Lt) Description Unsigned less-than comparison. Returns 1 if lhs < rhs, else 0. Syntax lt($lhs[: ], $rhs[: ]) Example let v2: i1 := lt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » lt","id":"125","title":"lt"},"126":{"body":"( Expression::Binary with BinaryOperation::Gt) Description Unsigned greater-than comparison. Returns 1 if lhs > rhs, else 0. Syntax gt($lhs[: ], $rhs[: ]) Example let v2: i1 := gt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gt","id":"126","title":"gt"},"127":{"body":"( Expression::Binary with BinaryOperation::Slt) Description Signed less-than comparison. Operands are treated as two’s complement. Syntax slt($lhs[: ], $rhs[: ]) Example let v2: i1 := slt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » slt","id":"127","title":"slt"},"128":{"body":"( Expression::Binary with BinaryOperation::Sgt) Description Signed greater-than comparison. Operands are treated as two’s complement. Syntax sgt($lhs[: ], $rhs[: ]) Example let v2: i1 := sgt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sgt","id":"128","title":"sgt"},"129":{"body":"( Expression::Binary with BinaryOperation::Eq) Description Equality comparison. Returns 1 if lhs == rhs, else 0. Signedness is irrelevant. Syntax eq($lhs[: ], $rhs[: ]) Example let v2: i1 := eq(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » eq","id":"129","title":"eq"},"13":{"body":"--newyork Enables the newyork optimizer to reduced compiled contract code size, by routing Yul lowering through the experimental newyork IR pipeline instead of the standard Yul-to-LLVM path. Composes with --yul, --combined-json, and the default Solidity mode. In standard JSON mode this flag is rejected; enable the pipeline via the settings.polkavm.newyork input field instead. Off by default.","breadcrumbs":"resolc user guide » Command Line Interface » newyork IR pipeline","id":"13","title":"newyork IR pipeline"},"130":{"body":"( Expression::Binary with BinaryOperation::Byte) Description Extract a single byte from a 256-bit word. byte(i, x) returns the i-th byte of x with byte 0 being the most significant. If i ≥ 32, the result is 0. Syntax byte($index[: ], $word[: ]) Example let v2: i8 := byte(v0, v1) Operands Name Type Notes index i256 Byte position; 0 = most significant byte. Values ≥ 32 yield 0. word i256 Source word. Result and purity Result Purity i8 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » byte","id":"130","title":"byte"},"131":{"body":"( Expression::Binary with BinaryOperation::SignExtend) Description Sign-extend an integer from a byte position. Per EVM, signextend(b, x) treats byte b of x as the most significant byte of a smaller signed integer and extends its sign through the upper bytes. Syntax signextend($byte_position[: ], $value[: ]) Example let v2 := signextend(v0, v1) Operands Name Type Notes byte_position i256 Byte position of the sign byte (0–31). value i256 Source value. Result and purity Result Purity i256 — the extended value occupies the full word Pure Annotations The width-targeted sign-extension primitive sext> ( Expression::SignExtendTo) is a separate operation; see the bit-width conversions section.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » signextend","id":"131","title":"signextend"},"132":{"body":"( Expression::Ternary with BinaryOperation::AddMod) Description Ternary modular addition: (a + b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax addmod($a[: ], $b[: ], $n[: ]) Example let v3 := addmod(v0, v1, v2) Operands Name Type Notes a i256 First addend. b i256 Second addend. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » addmod","id":"132","title":"addmod"},"133":{"body":"( Expression::Ternary with BinaryOperation::MulMod) Description Ternary modular multiplication: (a * b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax mulmod($a[: ], $b[: ], $n[: ]) Example let v3 := mulmod(v0, v1, v2) Operands Name Type Notes a i256 First factor. b i256 Second factor. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mulmod","id":"133","title":"mulmod"},"134":{"body":"( Expression::Unary with UnaryOperation::IsZero) Description Returns 1 if the operand is 0, else 0. Also serves as the logical NOT for boolean values. Syntax iszero($operand[: ]) Example let v1: i1 := iszero(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » iszero","id":"134","title":"iszero"},"135":{"body":"( Expression::Unary with UnaryOperation::Not) Description Bitwise complement. Inverts every bit; equivalent to xor(operand, 2^256 - 1). Syntax not($operand[: ]) Example let v1 := not(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — the complement fills the full word regardless of operand width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » not","id":"135","title":"not"},"136":{"body":"( Expression::Unary with UnaryOperation::Clz) Description Count leading zeros. Returns the number of leading zero bits in the operand, where a value of 0 returns 256 (the full width). Not an EVM opcode; reaches newyork as a Yul builtin ( FunctionName::Clz) and is translated directly by the Yul-to-newyork translator. Syntax clz($operand[: ]) Example let v1 := clz(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — in practice the value fits in nine bits (max 256), so type inference often narrows further Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » clz","id":"136","title":"clz"},"137":{"body":"( Expression::Truncate) Description Reinterpret a wider integer as a narrower one by discarding the upper bits. The destination width is carried in the IR’s to: BitWidth field and is rendered inside the angle brackets of the printer mnemonic. Narrowing-only; the source width must be greater than or equal to the destination width. Syntax truncate>($value[: ]) Example let v1: i64 := truncate(v0)\\nlet v2: i8 := truncate(v1: i64) Operands Name Type Notes value i256 Source value; must be at least as wide as the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None. The destination width is part of the operation name, not a debug annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » truncate>","id":"137","title":"truncate>"},"138":{"body":"( Expression::ZeroExtend) Description Reinterpret a narrower integer as a wider one by zero-filling the upper bits. The destination width is carried in the IR’s to: BitWidth field. Widening-only. Syntax zext>($value[: ]) Example let v1 := zext(v0: i8) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » zext>","id":"138","title":"zext>"},"139":{"body":"( Expression::SignExtendTo) Description Reinterpret a narrower signed integer as a wider one by sign-extending the high bit. The destination width is carried in the IR’s to: BitWidth field. Distinct from signextend ( Expression::Binary), which is the EVM byte-position primitive; this one specifies the destination width directly and is introduced by passes that produce a sign-extended value at a known target width. Syntax sext>($value[: ]) Example let v1 := sext(v0: i64) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sext>","id":"139","title":"sext>"},"14":{"body":"--stack-size PVM is a register machine with a traditional stack memory space for local variables. This controls the total amount of stack space the contract can use. You are incentivized to keep this value as small as possible: Increasing the stack size will increase gas costs due to increased startup costs. The stack size contributes to the total memory size a contract can use, which includes the contract’s code size. Default value: 131072 Warning If the contract uses more stack memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Stack size","id":"14","title":"Stack size"},"140":{"body":"( Expression::Keccak256) Description Compute the Keccak-256 hash of length bytes of emulated EVM linear memory starting at offset. The general-purpose hashing primitive; the specialized variants below cover the common scratch-space patterns more compactly. Syntax keccak256($offset[: ], $length[: ]) Example let v2 := keccak256(v0, v1) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. length i256 Length of the region to hash, in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure — the hash is a deterministic function of the memory contents at evaluation time. Passes that hoist or dedupe must respect intervening memory writes. Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256","id":"140","title":"keccak256"},"141":{"body":"( Expression::Keccak256Pair) Description Compound hash of two 256-bit words. Equivalent to mstore(0, word0); mstore(32, word1); keccak256(0, 64) but emitted as a single outlined call after mem_opt’s keccak fusion recognizes the pattern. The mapping-key idiom; see also mapping_sload. Syntax keccak256_pair($word0[: ], $word1[: ]) Example let v2 := keccak256_pair(v0, v1) Operands Name Type Notes word0 i256 First word; the high 32 bytes of the hash input. word1 i256 Second word; the low 32 bytes of the hash input. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_pair","id":"141","title":"keccak256_pair"},"142":{"body":"( Expression::Keccak256Single) Description Compound hash of a single 256-bit word. Equivalent to mstore(0, word0); keccak256(0, 32) but emitted as a single outlined call after mem_opt’s keccak fusion. Syntax keccak256_single($word0[: ]) Example let v1 := keccak256_single(v0) Operands Name Type Notes word0 i256 The word to hash. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_single","id":"142","title":"keccak256_single"},"143":{"body":"( Expression::Caller) Description Address of the immediate caller of the current call frame. Syntax caller() Example let v0: i160 := caller() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » caller","id":"143","title":"caller"},"144":{"body":"( Expression::CallValue) Description Value (wei) attached to the current call. Syntax callvalue() Example let v0 := callvalue() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callvalue","id":"144","title":"callvalue"},"145":{"body":"( Expression::Origin) Description Address of the original externally owned account that initiated the transaction. Syntax origin() Example let v0: i160 := origin() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » origin","id":"145","title":"origin"},"146":{"body":"( Expression::Address) Description Address of the contract executing the current call frame. Syntax address() Example let v0: i160 := address() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » address","id":"146","title":"address"},"147":{"body":"( Expression::ChainId) Description Chain identifier of the network the contract is executing on. Syntax chainid() Example let v0 := chainid() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » chainid","id":"147","title":"chainid"},"148":{"body":"( Expression::Gas) Description Remaining gas at the point of evaluation. Modeled as a pure expression for IR purposes; in practice it changes between evaluations, so any simplifier that deduplicates pure expressions must respect gas as a barrier. Syntax gas() Example let v0: i64 := gas() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gas","id":"148","title":"gas"},"149":{"body":"( Expression::MSize) Description Highest byte offset of emulated EVM linear memory that has been touched, rounded up to the next 32-byte boundary. Unlike gas, classified as side-effectful by the simplifier: unused msize() bindings are not eliminated, because the result depends on the program’s memory-access history and would change if the surrounding statements were reordered. Syntax msize() Example let v0: i64 := msize() Operands None. Result and purity Result Purity i64 Effectful (see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » msize","id":"149","title":"msize"},"15":{"body":"--heap-size Unlike the EVM, due to the lack of dynamic memory metering, PVM contracts emulate the EVM heap memory with a static buffer. Consequentially, instead of infinite memory with exponentially growing gas costs, PVM contracts have a finite amount of memory with constant gas costs available. You are incentivized to keep this value as small as possible:\\n1.Increasing the heap size will increase startup costs.\\n2.The heap size contributes to the total memory size a contract can use, which includes the contract’s code size Default value: 131072 Warning If the contract uses more heap memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Heap size","id":"15","title":"Heap size"},"150":{"body":"( Expression::Coinbase) Description Address of the block’s coinbase (block author). Syntax coinbase() Example let v0: i160 := coinbase() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » coinbase","id":"150","title":"coinbase"},"151":{"body":"( Expression::Timestamp) Description Block timestamp, as a Unix epoch second. Syntax timestamp() Example let v0: i64 := timestamp() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » timestamp","id":"151","title":"timestamp"},"152":{"body":"( Expression::Number) Description Current block number. Syntax number() Example let v0: i64 := number() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » number","id":"152","title":"number"},"153":{"body":"( Expression::Difficulty) Description Pre-merge block difficulty. On post-merge chains this is the block’s prevrandao value. Syntax difficulty() Example let v0 := difficulty() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » difficulty","id":"153","title":"difficulty"},"154":{"body":"( Expression::GasLimit) Description Block gas limit. Syntax gaslimit() Example let v0: i64 := gaslimit() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gaslimit","id":"154","title":"gaslimit"},"155":{"body":"( Expression::BaseFee) Description Current block’s EIP-1559 base fee per gas. Syntax basefee() Example let v0 := basefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » basefee","id":"155","title":"basefee"},"156":{"body":"( Expression::BlobBaseFee) Description Current block’s EIP-4844 blob base fee per gas. Syntax blobbasefee() Example let v0 := blobbasefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobbasefee","id":"156","title":"blobbasefee"},"157":{"body":"( Expression::BlobHash) Description Versioned hash of the blob at the given index in the current transaction’s blob list. Syntax blobhash($index[: ]) Example let v1 := blobhash(v0) Operands Name Type Notes index i256 Blob index; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobhash","id":"157","title":"blobhash"},"158":{"body":"( Expression::BlockHash) Description Hash of the block with the given number. Per EVM, valid only for the most recent 256 blocks; outside that range the result is 0. Syntax blockhash($number[: ]) Example let v1 := blockhash(v0) Operands Name Type Notes number i256 Block number; forward analysis widens to i256. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blockhash","id":"158","title":"blockhash"},"159":{"body":"( Expression::SelfBalance) Description Balance (in wei) of the contract executing the current call frame. Cheaper than balance(address()). Syntax selfbalance() Example let v0 := selfbalance() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfbalance","id":"159","title":"selfbalance"},"16":{"body":"--solc Specify the path to the solc executable. By default, the one in ${PATH} is used.","breadcrumbs":"resolc user guide » Command Line Interface » solc","id":"16","title":"solc"},"160":{"body":"( Expression::GasPrice) Description Effective gas price of the current transaction. Syntax gasprice() Example let v0 := gasprice() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gasprice","id":"160","title":"gasprice"},"161":{"body":"( Expression::CallDataLoad) Description Read 32 bytes from the current call’s calldata at the given offset. Reads past the end of calldata return zero bytes. Syntax calldataload($offset[: ]) Example let v1 := calldataload(v0) Operands Name Type Notes offset i256 Byte offset into calldata. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldataload","id":"161","title":"calldataload"},"162":{"body":"( Expression::CallDataSize) Description Length of the current call’s calldata, in bytes. Syntax calldatasize() Example let v0: i64 := calldatasize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatasize","id":"162","title":"calldatasize"},"163":{"body":"( Expression::ReturnDataSize) Description Length of the most recently returned data buffer from a sub-call, in bytes. Modeled as pure per IR but reflects the last ExternalCall / Create result; consumers must respect that ordering. Syntax returndatasize() Example let v0: i64 := returndatasize() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatasize","id":"163","title":"returndatasize"},"164":{"body":"( Expression::CodeSize) Description Size of the currently executing code, in bytes. Syntax codesize() Example let v0: i64 := codesize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codesize","id":"164","title":"codesize"},"165":{"body":"( Expression::ExtCodeSize) Description Size of the code deployed at the given address, in bytes. Returns 0 for accounts with no deployed code. Syntax extcodesize($address[: ]) Example let v1: i64 := extcodesize(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodesize","id":"165","title":"extcodesize"},"166":{"body":"( Expression::ExtCodeHash) Description Keccak-256 hash of the code deployed at the given address. Returns 0 for non-existent accounts. Syntax extcodehash($address[: ]) Example let v1 := extcodehash(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodehash","id":"166","title":"extcodehash"},"167":{"body":"( Expression::Balance) Description Balance (in wei) of the given account address. Use selfbalance for the contract executing the current call frame (cheaper). Syntax balance($address[: ]) Example let v1 := balance(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » balance","id":"167","title":"balance"},"168":{"body":"( Expression::MLoad) Description Read a 32-byte word from emulated EVM linear memory at offset. The word is read big-endian per EVM semantics. Pure per IR, but reads after writes return the new value; the memory passes track read/write dependencies separately. Syntax mload($offset[: ]) [/* */] Example let v1 := mload(v0: i64)\\nlet v2: i32 := mload(v3: i64) /* free_ptr */ Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. Result and purity Result Purity i32 when region is FreePointerSlot; i256 otherwise Pure (per IR; see Description) Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. The region also determines the result width: a load from FreePointerSlot produces an i32 since the FMP fits in a pointer-sized word.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mload","id":"168","title":"mload"},"169":{"body":"( Expression::SLoad) Description Read a 32-byte word from persistent contract storage at the given key. Pure per IR; reads after writes to the same slot return the new value. Syntax sload($key[: ]) [/* slot: 0x */] Example let v1 := sload(v0)\\nlet v2 := sload(v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise Same tagging rules as sstore. The printer renders the annotation whenever the field is Some and the deduplicator’s canonicalizer partitions signatures by slot; no pass currently writes Some(...), however, so in present-day dumps the annotation is dormant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sload","id":"169","title":"sload"},"17":{"body":"--debug-output-dir Dump all intermediary compiler artifacts to files in the specified directory. This includes the Yul IR, optimized and unoptimized LLVM IR, the ELF object and the PVM assembly. When the newyork pipeline is active, the newyork IR is additionally dumped (the final IR, a pre-late-pass snapshot, and heap and memory optimization data). Useful for debugging and development purposes.","breadcrumbs":"resolc user guide » Command Line Interface » Debug artifacts","id":"17","title":"Debug artifacts"},"170":{"body":"( Expression::TLoad) Description Read a 32-byte word from transient storage at the given key. Transient storage is wiped at the end of the transaction; pair with tstore. Syntax tload($key[: ]) Example let v1 := tload(v0) Operands Name Type Notes key i256 Transient storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The IR does not track a static slot for tload.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tload","id":"170","title":"tload"},"171":{"body":"( Expression::MappingSLoad) Description Compound load for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sload(keccak256(0, 64)) but emitted as a single outlined call after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair — itself produced by mem_opt’s keccak fusion — followed by an sload whose key has a single consumer). Only valid when the intermediate hash is used exclusively by this load. Syntax mapping_sload($key[: ], $slot[: ]) Example let v2 := mapping_sload(v0: i160, v1) Operands Name Type Notes key i256 Mapping key; often narrowed to i160 for address keys. slot i256 The mapping’s declared storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The fused statement’s effective storage slot is the keccak hash of the key and the declared slot, which is never a compile-time constant; no static_slot hint is surfaced.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sload","id":"171","title":"mapping_sload"},"172":{"body":"( Expression::DataOffset) Description Offset of a named data segment within the deployed code. The identifier is a string carried in the IR’s id: String field; the linker resolves it to a concrete offset. Syntax dataoffset(\\"\\") Example let v0 := dataoffset(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i256 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position (not a comment annotation; it is the expression itself).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » dataoffset","id":"172","title":"dataoffset"},"173":{"body":"( Expression::DataSize) Description Size of a named data segment within the deployed code, in bytes. The identifier is resolved by the linker. Syntax datasize(\\"\\") Example let v0: i64 := datasize(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i64 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datasize","id":"173","title":"datasize"},"174":{"body":"( Expression::LoadImmutable) Description Read the value of a named immutable variable. Immutables are written once during contract construction by SetImmutable and read afterwards via this expression. Syntax loadimmutable(\\"\\") Example let v0 := loadimmutable(\\"MyContract.owner\\") Operands None — the key is a quoted string literal in the syntax position. Result and purity Result Purity i256 Pure Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » loadimmutable","id":"174","title":"loadimmutable"},"175":{"body":"( Expression::LinkerSymbol) Description Address of an external library, resolved by the linker. The path encodes the library’s source location and identifier. Syntax linkersymbol(\\"\\") Example let v0: i160 := linkersymbol(\\"contracts/Library.sol:L\\") Operands None — the path is a quoted string literal in the syntax position. Result and purity Result Purity i160 Pure Annotations Source field Printed as path: String The quoted path in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » linkersymbol","id":"175","title":"linkersymbol"},"176":{"body":"( Expression::Call; the printer emits func_ when no function name is registered) Description Internal function call. Invokes a user-defined function declared earlier in the same object; the mnemonic is the function’s Yul-level name, or func_ if the printer has no name registered for the FunctionId. Distinct from call and the other EVM call-opcode statements, which cross the contract boundary. Syntax ([$argument_0[: ], $argument_1[: ], …]) Example let v3 := abi_decode_uint256(v0, v1, v2)\\nlet v4, v5 := returns_two(v0) // multi-return via let multi-binding Operands Name Type Notes arguments Vec Zero or more argument values, in declaration order; each operand may carry a : suffix. Result and purity Result Purity One or more values, widths taken from the callee’s declared return types (or the inferred return widths, narrowed via the interprocedural pass). Falls back to i256 when the callee’s returns are unknown to type inference. Effectful — the simplifier treats every call as side-effectful regardless of callee body, so unused call bindings are not DCE’d. The transitive purity of the callee is not tracked at the IR level. Annotations Source field Printed as function: FunctionId The callee’s name in the syntax position (or func_ if the printer has no name registered).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » ","id":"176","title":""},"177":{"body":"The operations in this section all modify external state: emulated EVM linear memory, persistent storage, or transient storage. They are statements (not expressions) and they are never pure. Simplification and deduplication never reorder them with respect to each other or with respect to reverts; the memory passes treat them as the side-effect boundary for their analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Memory and storage writes","id":"177","title":"Memory and storage writes"},"178":{"body":"( Statement::MStore) Description Write a 32-byte word to emulated EVM linear memory at offset. The word is stored big-endian, matching EVM semantics; the codegen handles the byte swap on PolkaVM’s little-endian RISC-V target. Syntax mstore($offset[: ], $value[: ]) [/* */] Example mstore(v0, v1) // Unknown region; no annotation printed\\nmstore(v2, v3) /* scratch */ // offset proven to land in 0x00..0x3f\\nmstore(v4, v5) /* free_ptr */ // offset is exactly 0x40 Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 The 32-byte word to store. Narrower values are zero-extended at codegen time. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Assigned at translation time from the constant offset (if any); consumed by mem_opt, FMP propagation, and byte-swap mode selection.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore","id":"178","title":"mstore"},"179":{"body":"( Statement::MStore8) Description Write a single byte to emulated EVM linear memory at offset. The low 8 bits of value are stored; the upper bits are ignored. The operation is otherwise identical to mstore: same operand shape, same region tag, same side-effect classification. Syntax mstore8($offset[: ], $value[: ]) [/* */] Example mstore8(v0, v1: i8) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 Only the low 8 bits are stored. Often narrowed to i8 by type inference. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. Most mstore8s carry an Unknown region in practice because single-byte writes typically target offsets the translator cannot prove constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore8","id":"179","title":"mstore8"},"18":{"body":"-g Generate source based debug information in the output code file. Useful for debugging and development purposes and disabled by default.","breadcrumbs":"resolc user guide » Command Line Interface » Debug info","id":"18","title":"Debug info"},"180":{"body":"( Statement::MCopy) Description Copy length bytes from src to dest within emulated EVM linear memory. The Yul builtin mcopy maps directly onto this statement; unlike mstore, it does not carry a region tag because the source and destination ranges may straddle multiple regions. Syntax mcopy($dest[: ], $src[: ], $length[: ]) Example mcopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. src i256 Source byte offset in linear memory. length i256 Number of bytes to copy. Overlapping ranges follow EVM-defined memmove semantics. Result and purity Result Purity None Effectful Annotations None. mcopy carries no region tag because the source and destination ranges may straddle multiple regions, and no static-slot hint because the copy is not storage-bound.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mcopy","id":"180","title":"mcopy"},"181":{"body":"( Statement::SStore) Description Write a 32-byte word to persistent contract storage at key. The operation is the durable counterpart of mstore: the value survives across transactions and is observable to subsequent calls to the contract. Syntax sstore($key[: ], $value[: ]) [/* slot: 0x */] Example sstore(v0, v1)\\nsstore(v2, v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. May be a constant slot, a keccak-derived slot for mappings or dynamic arrays, or an arbitrary expression. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise The printer renders the annotation whenever the field is Some, and the deduplicator’s canonicalizer and mapping-fusion analyses consume it as part of the signature. No pass currently writes Some(...), so the annotation is dormant in present-day dumps; when absent, alias and dedup analyses fall back to the conservative “may alias any slot” assumption.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sstore","id":"181","title":"sstore"},"182":{"body":"( Statement::TStore) Description Write a 32-byte word to transient storage at key. Transient storage is wiped at the end of the transaction, so tstore is the right primitive for per-transaction bookkeeping (reentrancy guards, cached results) without the gas cost of sstore on EVM. On PolkaVM the transient backing store is provided by pallet-revive. Syntax tstore($key[: ], $value[: ]) Example tstore(v0, v1) Operands Name Type Notes key i256 Transient storage slot. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations None. Unlike sstore, the IR does not track a static slot for tstore: transient storage’s short-lived lifetime makes the slot-aware optimizations less valuable, and the translator does not produce the annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tstore","id":"182","title":"tstore"},"183":{"body":"( Statement::MappingSStore) Description Compound store for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sstore(keccak256(0, 64), value) but emitted as a single outlined statement after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair followed by an sstore whose key has a single consumer). Only valid when the intermediate hash is not observed by any other statement. Syntax mapping_sstore($key[: ], $slot[: ], $value[: ]) Example mapping_sstore(v0, v1, v2) Operands Name Type Notes key i256 Mapping key. The outlining pass force-widens it to i256, so it always prints at full width, even for address keys. slot i256 The mapping’s declared storage slot. Typically a small constant. value i256 The value to store at the computed storage location. Result and purity Result Purity None Effectful Annotations None. mapping_sstore deliberately drops the static_slot annotation that the original sstore may have carried, because the fused statement’s effective slot is the keccak hash of the key and the declared slot, which is never a compile-time constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sstore","id":"183","title":"mapping_sstore"},"184":{"body":"Multi-byte memory copies from the EVM-accessible byte sources (code, external code, returndata, embedded data, and calldata) into emulated EVM linear memory. They all take the same shape: a destination memory offset, a source offset, and a length. They are effectful and act as opaque barriers to the memory passes.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bulk copies","id":"184","title":"Bulk copies"},"185":{"body":"( Statement::CodeCopy) Description Copy length bytes from the currently executing code at offset into emulated EVM linear memory at dest. Reads past the end of code yield zero bytes. Syntax codecopy($dest[: ], $offset[: ], $length[: ]) Example codecopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the executing code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codecopy","id":"185","title":"codecopy"},"186":{"body":"( Statement::ExtCodeCopy) Description Copy length bytes from the code at address starting at offset into emulated EVM linear memory at dest. Reads beyond the code yield zero bytes; non-existent accounts yield all zeros. Syntax extcodecopy($address[: ], $dest[: ], $offset[: ], $length[: ]) Example extcodecopy(v0: i160, v1, v2, v3) Operands Name Type Notes address i256 Account whose code to read; forward analysis widens to at least i160. dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the external code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodecopy","id":"186","title":"extcodecopy"},"187":{"body":"( Statement::ReturnDataCopy) Description Copy length bytes from the most recent sub-call’s return data starting at offset into emulated EVM linear memory at dest. Per EVM, reads past the return data’s end revert; the memory passes treat this as a potential trap site. Syntax returndatacopy($dest[: ], $offset[: ], $length[: ]) Example returndatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the return-data buffer. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful (may revert on out-of-range reads, per EVM) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatacopy","id":"187","title":"returndatacopy"},"188":{"body":"( Statement::DataCopy) Description Copy length bytes from an embedded data segment starting at offset into emulated EVM linear memory at dest. The source segment is resolved by the linker, typically used to pull constants compiled into the bytecode into runtime memory. Syntax datacopy($dest[: ], $offset[: ], $length[: ]) Example datacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the data segment. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datacopy","id":"188","title":"datacopy"},"189":{"body":"( Statement::CallDataCopy) Description Copy length bytes from the current call’s calldata starting at offset into emulated EVM linear memory at dest. Reads past the end of calldata yield zero bytes. Syntax calldatacopy($dest[: ], $offset[: ], $length[: ]) Example calldatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in calldata. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatacopy","id":"189","title":"calldatacopy"},"19":{"body":"--link [--libraries ] In Solidity, 3 things can happen with libraries: They are not externally callable and thus can be inlined. The solc Solidity optimizer inlines those (usually the case). Note: resolc always activates the solc Solidity optimizer. If the solc Solidity optimizer is disabled or for some reason fails to inline them (both rare), they are not inlined and require linking. They are externally callable but still linked at compile time. This is the case if at compile time the library address is known (i.e. --libraries supplied in CLI or the corresponding setting in STD JSON input). They are linked at deploy time. This happens when the compiler does not know the library address (i.e. --libraries flag is missing or the provided libraries are incomplete, same for STD JSON input). This case is rare because it’s discourage and should never be used by production dApps. In cases 1.2 and 3: Some of the produced code blobs will be in the “unlinked” raw ELF object format and not yet deployable. To make them deployable, they need to be “linked” (done using the resolc --link linker mode explained below). The compiler emitted DELEGATECALL instructions to call non-inlined (unlinked) libraries. The contract deployer must make sure to deploy any libraries prior to contract deployment. Warning Using deploy time linking is officially discouraged. Mainly due to bytecode hashes changing after the fact. We decided to support it in resolc regardless, due to popular request. Similar to how it works in solc, --libraries may be used to provide libraries during linking mode. Unlike with solc, where linking implies a simple string substitution mechanism, resolc needs to resolve actual missing ELF symbols. This is due to how factory dependencies work in PVM. As a consequence, it isn’t sufficient to just provide the unlinked blobs to the linker. Instead, they must be provided in the exact same directory structure the Solidity source code was found during compile time. Example: The contract src/foo/bar.sol:Bar is involved in deploy time linking. It may be a factory dependency. The contract blob needs to be provided inside a relative src/foo/ directory to --link. Otherwise symbol resolution may fail. Note Tooling is supposed to take care of this. In the future, we may append explicit linkage data to simplify the deploy time linking feature.","breadcrumbs":"resolc user guide » Command Line Interface » Deploy time linking","id":"19","title":"Deploy time linking"},"190":{"body":"The statements that bind SSA values, hold loose expressions evaluated for their side effects, and write to immutable storage. Every pure expression in this reference’s earlier sections appears on the right-hand side of one of these statements (almost always let).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bindings and wrappers","id":"190","title":"Bindings and wrappers"},"191":{"body":"( Statement::Let) Description SSA binding: evaluate an expression and bind its result(s) to a list of fresh value ids. The let statement is the only mechanism by which pure expressions enter the value namespace; every v in a dump was produced by a let (or by a value-yielding control-flow statement or by a parameter at function entry). Syntax let $binding_0[, $binding_1, …] := $expression Example let v3 := add(v0, v1)\\nlet v4, v5 := if v2 [v0, v1] { … } else { … } // multi-binding from a value-yielding If Operands Name Type Notes bindings Vec One or more fresh SSA ids to bind. Most expressions produce one value; control-flow statements may produce several. value Expression The right-hand side; see any of the Pure expression entries. Result and purity Result Purity None directly — the bound ids carry the expression’s result(s) Effectful (binding establishment); the right-hand side’s purity is independent Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » let","id":"191","title":"let"},"192":{"body":"( Statement::Expression) Description Wraps an expression evaluated for its observable consequences but whose value is not bound. Typically a zero-return (void) user-defined function call ( Expression::Call) evaluated for its side effects, or the discarded void result of a Yul builtin used as a statement (a value-producing expression is bound by a let instead). EVM external calls ( call, delegatecall, etc.) and contract creation ( create, create2) translate to dedicated Statement::ExternalCall and Statement::Create variants, not through this wrapper. Syntax $expression Example update_balance(v0) // void function called for its side effects Operands Name Type Notes expression Expression Any expression; result is discarded. Result and purity Result Purity None Effectful (per its statement position) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Expression statement","id":"192","title":"Expression statement"},"193":{"body":"( Statement::SetImmutable) Description Write an immutable variable during contract construction. Immutables are written once in the constructor and read later via loadimmutable. The key is a string identifier resolved by the linker. Syntax setimmutable(\\"\\", $value[: ]) Example setimmutable(\\"MyContract.owner\\", v0) Operands Name Type Notes value i256 The value to store; the key is a quoted string literal in the syntax position. Result and purity Result Purity None Effectful Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » setimmutable","id":"193","title":"setimmutable"},"194":{"body":"The IR’s control flow is structured: if, switch, and for are statements with explicit nested regions, each carrying input values and yielding output values. The jump-like statements ( break, continue, leave) are scoped to their nearest enclosing construct. Nested blocks create lexical scope without otherwise changing control flow.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Structured control flow","id":"194","title":"Structured control flow"},"195":{"body":"( Statement::If) Description Conditional execution with optional value yields. The then region runs when condition is non-zero; the else region runs otherwise. If outputs is non-empty, both regions must yield the same number of values and the statement is bound by a let. Syntax if $condition[: ] [[$input_0, $input_1, …]] { … } [else { … }] Example if v0: i1 { sstore(v1, v2)\\n} let v5, v6 := if v3: i1 [v1, v2] { let v7: i64 := 0x1 // add widens its operands to the i64 register width let v8 := add(v2, v7: i64) yield v1, v8\\n} else { yield v1, v2\\n} Operands Name Type Notes condition i256 Branch selector; non-zero takes the then region. Often narrowed to i1. inputs Vec Values threaded into both regions, printed in square brackets after the condition. (regions) — The then_region is mandatory; the else_region is optional and, when absent, implicitly yields the inputs unchanged. Result and purity Result Purity None for the statement form; for the value-yielding form, one value per outputs binding, types taken from the yielded values Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » if","id":"195","title":"if"},"196":{"body":"( Statement::Switch) Description Multi-way dispatch on a scrutinee value. Each case matches a specific constant and runs its region; an optional default region catches non-matching values. Like if, switch may yield values via outputs and accept thread-through values via inputs. Syntax switch $scrutinee[: ] [[$input_0, …]]\\ncase 0x { …\\n}\\n[case 0x { …\\n} …]\\n[default { …\\n}] Example switch v0\\ncase 0x0 { sstore(v1, v2)\\n}\\ncase 0x1 { sstore(v1, v3)\\n}\\ndefault { invalid()\\n} Operands Name Type Notes scrutinee i256 The value to compare against each case. inputs Vec Values threaded into every case and default region. cases Vec Each case carries a constant value: BigUint and a region. (default) — Optional fall-through region. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » switch","id":"196","title":"switch"},"197":{"body":"( Statement::For) Description Structured loop with explicit loop-carried variables. Each iteration evaluates condition_statements followed by condition; if the condition is non-zero, the body region runs, then the post region runs, and the loop iterates. Loop-carried variables are passed as SSA values through each region. break exits the loop and continue jumps to the post region. Syntax for { $variable_0 := $initial_0[, …] } [// condition statements: …] condition: $condition post [($post_input_variable_0[, …])] { … } body { … body … } Example let v0: i1 := 0x0\\nlet v6 := for { v1 := v0: i1 } // condition statements: let v2: i8 := 0xa condition: lt(v1, v2: i8) post (v3) { let v4: i64 := 0x1 let v5 := add(v3, v4: i64) yield v5 } body { sstore(v1, v1) 0x0: void yield v1 } Operands Name Type Notes initial_values Vec Starting values for the loop-carried variables. loop_variables Vec SSA ids visible inside condition, body, and post. condition_statements Vec Statements evaluated each iteration before the condition expression; emitted into the loop header block. Printed only when non-empty, behind a // condition statements: comment. condition Expression Re-evaluated each iteration; non-zero continues, zero exits. body Region Loop body; yields current loop-carried values. post_input_variables Vec Input SSA ids for the post region (one per loop-carried variable); receive the body’s yielded values merged with continue-site values via phi nodes in the LLVM codegen. post Region Runs after each body iteration (and after continue); yields updated loop-carried values. outputs Vec Final loop-carried values after exit. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » for","id":"197","title":"for"},"198":{"body":"( Statement::Break) Description Exit the innermost enclosing for loop. Carries the current values of loop-carried variables at the break point; these become the loop’s outputs. Syntax break Example if v0 { break [v1, v2] } Operands The loop-carried values: Vec print in brackets when non-empty (e.g. break [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » break","id":"198","title":"break"},"199":{"body":"( Statement::Continue) Description Skip to the post region of the innermost enclosing for loop. Like break, carries the current values of loop-carried variables internally. Syntax continue Example if v0 { continue [v1, v2] } Operands The loop-carried values print in brackets when non-empty (e.g. continue [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » continue","id":"199","title":"continue"},"2":{"body":"Head to contracts.polkadot.io for more general information about contracts on Polkadot.","breadcrumbs":"Welcome » Other Polkadot contracts resources","id":"2","title":"Other Polkadot contracts resources"},"20":{"body":"The resolc compiler driver is published as an NPM package under @parity/resolc. It’s usable from Node.js code or directly from the command line: npx @parity/resolc@latest --bin crates/integration/contracts/flipper.sol -o /tmp/out Note While the npm package makes a nice portable option, it doesn’t expose all options.","breadcrumbs":"resolc user guide » JS NPM package » JS NPM package","id":"20","title":"JS NPM package"},"200":{"body":"( Statement::Leave) Description Exit the current function, returning the listed values as the function’s return values. The Yul-level leave keyword translates directly to this statement; the inlining pass eliminates intra-function leaves where possible via the exit-flag transformation. Syntax leave [[$value_0[: ], $value_1[: ], …]] Example leave [v0, v1] // returns v0 and v1 from the function\\nleave // returns nothing (void function) Operands Name Type Notes return_values Vec Empty for void functions; otherwise one entry per declared return. Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » leave","id":"200","title":"leave"},"201":{"body":"( Statement::Block) Description A lexical scope without conditional or iterative behavior. The body is a region; control falls through after the region’s statements complete. Used to bound the visibility of inner bindings. Syntax { …\\n} Example { let v0 := add(v1, v2) sstore(v3, v0)\\n} // v0 is no longer in scope here Operands None — the body is a region, not an operand. Result and purity Result Purity None Effectful (per the body’s contents) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Nested block","id":"201","title":"Nested block"},"202":{"body":"Statements that cross the contract boundary: external calls, contract creation, and event log emission. All produce or rely on external state and act as barriers to memory and storage analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » External interaction","id":"202","title":"External interaction"},"203":{"body":"( Statement::ExternalCall with CallKind::Call) Description Standard external call that may transfer value. Reads args_length bytes from emulated EVM linear memory at args_offset as calldata, executes the target, and writes up to ret_length bytes of return data into linear memory at ret_offset. The boolean result indicates success. Syntax let $result := call($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := call(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Name Type Notes gas i256 Gas to forward to the target; forward analysis widens to at least i64. address i256 Callee address; forward analysis widens to at least i160. value i256 Wei to transfer with the call. args_offset i256 Calldata source offset in linear memory; forward analysis widens to at least i64. args_length i256 Calldata length in bytes; forward analysis widens to at least i64. ret_offset i256 Return-data destination offset in linear memory; forward analysis widens to at least i64. ret_length i256 Maximum return-data length; forward analysis widens to at least i64. Result and purity Result Purity i256 (success flag: 1 on success, 0 on revert/error; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » call","id":"203","title":"call"},"204":{"body":"( Statement::ExternalCall with CallKind::CallCode) Description Deprecated EVM opcode that executes the callee’s code in the caller’s context but with the callee’s storage. Not supported by the newyork backend (codegen rejects it); use delegatecall instead. Syntax let $result := callcode($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := callcode(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Same shape as call. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callcode","id":"204","title":"callcode"},"205":{"body":"( Statement::ExternalCall with CallKind::DelegateCall) Description Execute the callee’s code in the caller’s context: same storage, same sender, same call value. The standard mechanism for library calls and proxy patterns. No value operand (the caller’s call value is inherited). Syntax let $result := delegatecall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := delegatecall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » delegatecall","id":"205","title":"delegatecall"},"206":{"body":"( Statement::ExternalCall with CallKind::StaticCall) Description Read-only external call. Any state modification in the callee (including nested calls) causes the call to revert. No value operand. Syntax let $result := staticcall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := staticcall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful (no state writes, but still an external boundary and may revert) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » staticcall","id":"206","title":"staticcall"},"207":{"body":"( Statement::Create with CreateKind::Create) Description Deploy a new contract with the given init-code bytes, transferring value wei from the caller. The new contract’s address is derived from the caller’s address and nonce; on failure the result is 0. Syntax let $result := create($value[: ], $offset[: ], $length[: ]) Example let v4 := create(v0, v1: i64, v2: i64) Operands Name Type Notes value i256 Wei to transfer to the new contract. offset i256 Linear-memory offset of the init code; forward analysis widens to at least i64. length i256 Length of the init code in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create","id":"207","title":"create"},"208":{"body":"( Statement::Create with CreateKind::Create2) Description Deploy a new contract with a deterministic address derived from the caller’s address, the salt, and the init-code hash. Same operand shape as create plus an additional salt. Syntax let $result := create2($value[: ], $offset[: ], $length[: ], $salt[: ]) Example let v5 := create2(v0, v1: i64, v2: i64, v3) Operands Same as create plus salt: i256. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create2","id":"208","title":"create2"},"209":{"body":"( Statement::Log) Description Emit an event log entry. The mnemonic suffix is the number of indexed topics ( 0 through 4), determined by the length of the IR’s topics field. The data portion is read from length bytes of emulated EVM linear memory at offset. Syntax log($offset[: ], $length[: ][, $topic_0[: ], …]) Example log0(v0: i64, v1: i64) // no topics\\nlog2(v0: i64, v1: i64, v2, v3) // two topics Operands Name Type Notes offset i256 Data source offset in linear memory; forward analysis widens to at least i64. length i256 Data length in bytes; forward analysis widens to at least i64. topics Vec Zero to four indexed topic values; the length determines the mnemonic suffix. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » log","id":"209","title":"log"},"21":{"body":"resolc achieved successful integration with a variety of third party developer tools.","breadcrumbs":"resolc user guide » Tooling integration » Tooling integration","id":"21","title":"Tooling integration"},"210":{"body":"Statements that end the current call frame. Plain forms ( return, revert, stop), unconditional traps ( invalid, selfdestruct), and outlined revert variants ( panic_revert, error_string_revert, custom_error_revert) that encode common Solidity error patterns into single nodes that can be deduplicated across call sites.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Termination","id":"210","title":"Termination"},"211":{"body":"( Statement::Return) Description End the current call frame successfully, returning length bytes from emulated EVM linear memory at offset as the return data. Syntax return($offset[: ], $length[: ]) Example return(v0: i64, v1: i64) Operands Name Type Notes offset i256 Return-data source offset; forward analysis widens to at least i64. length i256 Return-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » return","id":"211","title":"return"},"212":{"body":"( Statement::Revert) Description End the current call frame with a revert, undoing all state changes made during the call, and returning length bytes of revert data from emulated EVM linear memory at offset. Syntax revert($offset[: ], $length[: ]) Example revert(v0: i64, v1: i64) Operands Name Type Notes offset i256 Revert-data source offset; forward analysis widens to at least i64. length i256 Revert-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » revert","id":"212","title":"revert"},"213":{"body":"( Statement::Stop) Description End the current call frame successfully with empty return data. Syntax stop() Example stop() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » stop","id":"213","title":"stop"},"214":{"body":"( Statement::Invalid) Description Unconditional invalid-opcode trap. Consumes all remaining gas and reverts. Used for unreachable branches and assertion failures. Syntax invalid() Example invalid() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » invalid","id":"214","title":"invalid"},"215":{"body":"( Statement::SelfDestruct) Description End the current call frame and transfer the contract’s remaining balance to address. Post-Cancun, the contract storage is not deleted (selfdestruct is effectively deprecated; the opcode still exists for legacy compatibility). Syntax selfdestruct($address[: ]) Example selfdestruct(v0: i160) Operands Name Type Notes address i256 Recipient of the contract’s balance; forward analysis widens to at least i160. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfdestruct","id":"215","title":"selfdestruct"},"216":{"body":"( Statement::PanicRevert) Description Outlined Solidity panic revert. Equivalent to writing the Panic(uint256) ABI encoding (selector 0x4e487b71 plus the panic code) into emulated EVM linear memory and reverting, but emitted as a single statement that lowers to one outlined helper call. Common panic codes: 0x01 assertion failure, 0x11 arithmetic overflow, 0x12 division by zero, 0x32 array-out-of-bounds, 0x41 memory overflow. Syntax panic_revert(0x) Example panic_revert(0x11) // arithmetic overflow Operands None — the panic code is stored as a u8 field on the IR, not an SSA operand. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as code: u8 The panic code in 0x form (two hex digits, zero-padded).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » panic_revert","id":"216","title":"panic_revert"},"217":{"body":"( Statement::ErrorStringRevert) Description Outlined Solidity Error(string) revert. Equivalent to writing the Error selector ( 0x08c379a0), the string offset and length, and up to four 32-byte data words into emulated EVM linear memory and reverting. The string length and the data words are stored as compile-time fields; no SSA operands. Syntax error_string_revert(, _words) Example error_string_revert(12, 1_words) // 12-byte string in one 32-byte word Operands None — the string length and data are compile-time fields, not SSA operands. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as length: u8 The string length in bytes, in the first syntax position. data: Vec The number of 32-byte data words (1–4), printed as _words in the second syntax position. The actual data is stored separately and not shown in the printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » error_string_revert","id":"217","title":"error_string_revert"},"218":{"body":"( Statement::CustomErrorRevert) Description Outlined Solidity custom-error revert. Encodes the error selector (left-shifted by 224 bits) and zero or more argument values into scratch memory and reverts. No FMP load is needed; the encoding uses the scratch region at offset 0. Syntax custom_error_revert(0x, [$arg_0, $arg_1, …]) Example custom_error_revert(0xa28c4c11, [v0, v1]) Operands Name Type Notes arguments Vec Zero or more argument values; the selector is a compile-time field. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as selector: BigUint The 4-byte error selector in hex, in the first syntax position. The selector is stored left-shifted by 224 bits; the printer right-shifts it back and prints the bare 4-byte value.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » custom_error_revert","id":"218","title":"custom_error_revert"},"219":{"body":"The revive compiler targets PolkaVM (PVM) via pallet-revive on Polkadot.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » PVM and the pallet-revive runtime target","id":"219","title":"PVM and the pallet-revive runtime target"},"22":{"body":"Support for resolc is available in forks of the hardhat and foundry Solidity toolkits: The Parity Hardhat fork The Parity Foundry fork","breadcrumbs":"resolc user guide » Tooling integration » Solidity toolkits","id":"22","title":"Solidity toolkits"},"220":{"body":"The exact target CPU configuration can be found here. Note The PVM linker requires fully relocatable ELF objects.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Target CPU configuration","id":"220","title":"Target CPU configuration"},"221":{"body":"PVM is a RISC-V based VM designed to overcome the flaws of WebAssebmly (Wasm). Wasm was believed to be a more efficient successor to the rather slow EVM. However, Wasm is far from an ideal target for smart contracts as some of its design decisions are unfavorable for short-lived workloads. The main problem is on-chain Wasm bytecode compilation or interpretation overhead. Prior benchmarks consistently ignoring this overhead seeded the blockchain industry with flawed assumptions: Only when ignoring the startup overhead Wasm is much faster than the slow computing EVM. In practice however, gains are nullified entirely and Wasm loses completely even against very slow VMs like the EVM. Executing Wasm contracts is in fact so inefficient that typical contract workloads are orders of magnitude more expensive than the equivalent EVM variant. On the other hand, since RISC-V is similar to CPUs found in validator hardware (x86 and ARM), bytecode translation mostly boils down to a linear mapping from one instruction to another. The embedded ISA specification reduces the number of general purpose registers, in turn removing the need for expensive register allocation. This guarantees single-pass O(n) JIT compilation of contract bytecode. The close proximity of PVM bytecode with actual validator CPU bytecode effectively allows to move all expensive compilation workload off-chain. Benchmarks ( 1, 2) show that with the PVM JIT, sandboxed PVM code executes at around half the speed of native code, which falls into the same ballpark of the state-of-the-art wasmtime Wasm implementation (while EVM sits somewhere around 1/10 to less than 1/100 of native speed). However, the PVM JIT compiler only uses a fraction of the time wasmtime requires to compile the code. Note The PVM JIT isn’t available yet in pallet-revive. At the time of writing, the contract code is interpreted, which is orders of magnitude slower than the JIT.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Why PVM","id":"221","title":"Why PVM"},"222":{"body":"The revive compiler targets the pallet-revive runtime environment. pallet-revive exposes a syscall like interface for contract interactions with the host environment. This is provided by the revive-runtime-api library. After the initial launch on the Polkadot Asset Hub blockchain, the runtime API is considered stable and backwards compatible indefinitively.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Host environment: pallet-revive","id":"222","title":"Host environment: pallet-revive"},"223":{"body":"Contributors are encouraged to implement some appropriate unit and integration tests together with any bug fixes or new feature implementations. However, when it comes to testing the code generation logic, our testing strategy goes way beyond simple unit and integration tests. This chapter explains how the revive compiler implementation is tested for correctness and how we define correctness. Tip Running the integration tests require the evm tool from go-ethereum in your $PATH. Either install it using your package manager or to build it from source: git clone https://github.com/ethereum/go-ethereum/\\ncd go-ethereum\\nmake all\\nexport PATH=/path/to/go-ethereum/build/bin/:$PATH","breadcrumbs":"Developer Guide » Testing strategy » Testing strategy","id":"223","title":"Testing strategy"},"224":{"body":"As a Solidity compiler, we aim to preserve contract code semantics as close as possible to Solidity compiled to EVM with the solc reference implementation. As highlighted in the user guide, due to the underlying target difference, this isn’t always possible. However, wherever it is possible, we follow the philosophy of bug compatibility with the Ethereum contracts stack.","breadcrumbs":"Developer Guide » Testing strategy » Bug compatibility with Ethereum Solidity","id":"224","title":"Bug compatibility with Ethereum Solidity"},"225":{"body":"A high level of bug compatibility with Ethereum is ensured through differential testing with the Ethereum solc and EVM contracts stack. The revive-integration library is the central integration test utility, providing a set of Solidity integration test cases. Further, it implements differential tests against the reference implementation by combining the revive-runner sandbox, the go-ethereum EVM tool and the revive-differential. The revive-runner library provides a declarative test specification format. This vastly simplifies writing differential test cases and removes a lot of room for errors in test logic. Example: { \\"differential\\": true, \\"actions\\": [ { \\"Instantiate\\": { \\"code\\": { \\"Solidity\\": { \\"contract\\": \\"Bitwise\\" } } } }, { \\"Call\\": { \\"dest\\": { \\"Instantiated\\": 0 }, \\"data\\": \\"3fa4f245\\" } } ]\\n} Above example instantiates the Bitwise contract and calls it with some defined calldata. The revive-runner library implements a helper wrapper to execute test specs on the go-ethereum standalone evm tool. This allows the revive-runner to execute specs against the EVM and the pallet-revive runtime. Key to differential testing is setting \\"differential\\": true, resulting in the following: The Bitwise contract is compiled to EVM and PVM code. The runner executes the defined actions on the EVM and collects all state changes (storage, balance) and execution results. The runner executes each action on the PVM. Observed state changes after each step as well as the final execution result is asserted to match the EVM counterparts exactly. Note how we never defined any expected outcome manually. Instead, we simply observe and collect the data defining the “correct” outcome. Differential testing in combination with declarative test specifications proved to be simple, yet very effective, in ensuring expected Ethereum Solidity semantics on pallet-revive.","breadcrumbs":"Developer Guide » Testing strategy » Differential integration tests","id":"225","title":"Differential integration tests"},"226":{"body":"A lot of nuanced bugs caused by tiny implementation details inside the revive compiler and the pallet-revive runtime could be identified and eliminated early on thanks to the differential testing strategy. Thus, we decided to take this approach further and created a comprehensive test runner and a large suite of more complex test cases. The Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.","breadcrumbs":"Developer Guide » Testing strategy » The differential testing utility","id":"226","title":"The differential testing utility"},"227":{"body":"Revive measures Rust and LLVM C++ line and region coverage with cargo-llvm-cov over the same tests as make test-workspace. Two ways to obtain a report: Locally: make coverage and make coverage-llvm-report (described below). Per PR: apply the measure code coverage label and read the bot-generated PR comment once the triggered workflow completes.","breadcrumbs":"Developer Guide » Code coverage » Code coverage","id":"227","title":"Code coverage"},"228":{"body":"# Install LLVM.\\nmake install-llvm # Or install instrumented LLVM.\\nmake install-llvm-coverage # ..set LLVM_SYS_221_PREFIX to a compatible LLVM build.. # Run coverage and generate revive Rust report.\\nmake coverage # Generate a separate LLVM C++ report if needed, if\\n# instrumented LLVM was used for `make coverage`.\\nmake coverage-llvm-report # Print clickable links to all accumulated HTML reports detected\\n# (they\'re grouped by timestamps) to easily view them in the browser.\\nmake coverage-browse The target: Builds and tests the workspace under cargo-llvm-cov with --ignore-run-fail so partial coverage lands even when test binaries exit non-zero. Writes a browsable HTML report into a timestamped run directory ( coverage-reports//revive/ or coverage-reports//llvm/).","breadcrumbs":"Developer Guide » Code coverage » Running locally","id":"228","title":"Running locally"},"229":{"body":"make coverage bakes in two defaults that keep instrumented runs tractable: It drops DWARF with CARGO_PROFILE_DEV_DEBUG=0 since coverage line data lives in the binaries’ __llvm_covmap sections. It bounds profile output with LLVM_PROFILE_FILE_NAME=revive-%4m.profraw. The default pattern contains %p, writing one raw profile per process. With an instrumented LLVM this could exceed tens of gigabytes of raw profiles in a full run. The %4m merge pool makes processes merge their counters into a handful of files instead. Even with those defaults, plan for: Disk space: Building instrumented LLVM and running an instrumented make coverage still needs tens of gigabytes of disk space. LLVM link memory ( make install-llvm-coverage): If a link step gets OOM-killed, rerun with capped parallelism (e.g. JOBS=1) to serialize the links. The rerun resumes incrementally. Test-binary link memory ( make coverage): If a link gets OOM-killed, rerun with RUSTFLAGS=\\"-C link-arg=-fuse-ld=lld\\" (or additionally with capped parallelism, e.g. CARGO_BUILD_JOBS=1). GNU ld holds every input object and the coverage mapping of the entire dependency closure in memory at once. lld links with a smaller peak. Test-run memory ( make coverage): Each concurrently running test spawns an instrumented resolc. On memory-constrained machines cap it with RUST_TEST_THREADS=4. This throttles test execution only, not compilation.","breadcrumbs":"Developer Guide » Code coverage » Resource requirements and troubleshooting","id":"229","title":"Resource requirements and troubleshooting"},"23":{"body":"resolc is available on godbolt.org for the Solidity and Yul input languages. See also the announcement post on the forum.","breadcrumbs":"resolc user guide » Tooling integration » Compiler explorer","id":"23","title":"Compiler explorer"},"230":{"body":"We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment. The musl target is used to obtain statically linked ELF binaries for Linux.","breadcrumbs":"Developer Guide » Cross compilation » Cross compilation","id":"230","title":"Cross compilation"},"231":{"body":"The REVIVE_LLVM_TARGET_PREFIX environment variable is used to control the target environment LLVM dependency. This requires a compatible LLVM build, obtainable via the revive-llvm build script. Example: # Build the host LLVM dependency with PolkaVM target support\\nmake install-llvm\\nexport LLVM_SYS_221_PREFIX=${PWD}/target-llvm/gnu/target-final # Build the target LLVM dependency with PolkaVM target support\\nrevive-llvm emsdk\\nsource emsdk/emsdk_env.sh\\nrevive-llvm --target-env emscripten build --llvm-projects lld\\nexport REVIVE_LLVM_TARGET_PREFIX=${PWD}/target-llvm/emscripten/target-final # Build the resolc frontend executable\\nmake install-wasm\\nmake test-wasm","breadcrumbs":"Developer Guide » Cross compilation » Wasm via emscripten","id":"231","title":"Wasm via emscripten"},"232":{"body":"rust-musl-cross is a straightforward way to cross compile Rust to musl. The Dockerfile is an executable example of how to do that.","breadcrumbs":"Developer Guide » Cross compilation » musl libc","id":"232","title":"musl libc"},"233":{"body":"","breadcrumbs":"FAQ » FAQ","id":"233","title":"FAQ"},"234":{"body":"We neither do nor don’t support any EVM version. We support Solidity versions, starting from solc version 0.8.0 onwards.","breadcrumbs":"FAQ » What EVM version do you support?","id":"234","title":"What EVM version do you support?"},"235":{"body":"Yes, almost all inline assembly features are supported ( see the differences in Yul translation chapter).","breadcrumbs":"FAQ » Is inline assembly supported","id":"235","title":"Is inline assembly supported"},"236":{"body":"See above, the same applies.","breadcrumbs":"FAQ » Do you support opcode XY?","id":"236","title":"Do you support opcode XY?"},"237":{"body":"We generally recommend to always use the latest supported version to profit from latest bugfixes, features and performance improvements. Find out about the latest supported version by running resolc --supported-solc-versions or checking here.","breadcrumbs":"FAQ » In what Solidity version should I write my dApp?","id":"237","title":"In what Solidity version should I write my dApp?"},"238":{"body":"The 24kb code size restriction only exist for the EVM. Our limit is currently around 1mb and may increase further in the future.","breadcrumbs":"FAQ » Tool XY says the contract size is larger than 24kb and will fail to deploy?","id":"238","title":"Tool XY says the contract size is larger than 24kb and will fail to deploy?"},"239":{"body":"No. resolc aims to work similarly to solc, but it’s not considered a drop-in replacement.","breadcrumbs":"FAQ » Is resolc a drop-in replacement for solc?","id":"239","title":"Is resolc a drop-in replacement for solc?"},"24":{"body":"There is remix IDE fork with resolc support at remix.polkadot.io. Unfortunately this is no longer actively maintained (there might be bugs and outdated resolc versions).","breadcrumbs":"resolc user guide » Tooling integration » Remix IDE","id":"24","title":"Remix IDE"},"240":{"body":"The revive compiler speeds up Solidity contracts significantly. revive provides a decisive edge over other contract platforms. Notably, the compiler eliminates the need of rewriting Solidity dApps in Rust or even as single dApp parachains for scaling reasons. Retaining as high compatibility with Ethereum Solidity as possible keeps entry barriers low. We believe in Dr. Gavin Wood’s ĐApps: What Web 3.0 Looks Like manifesto and the ecosystem of the Solidity programming language. Our motivation lies in the realization that for a true web3 revolution, significant scaling efforts, like the ones provided by the PVM and this project, are necessary to unfold.","breadcrumbs":"Roadmap and Vision » Vision and Roadmap","id":"240","title":"Vision and Roadmap"},"241":{"body":"The first major release, resolc v1.0.0, emits functional PVM code from given Solidity sources. It relies on solc and LLVM for optimizations. The main priority of this release was delivering a mostly feature complete and safe Solidity v0.8.0 compiler. Focus for the second major release is on the custom optimization pipeline, which aims to significantly improve emitted code blob sizes. The below roadmap gives a rough overview of the project’s development timeline.","breadcrumbs":"Roadmap and Vision » Roadmap","id":"241","title":"Roadmap"},"25":{"body":"The revive compiler is mostly compatible with the solc standard JSON interface. There are a few differences and additional (PVM related) input configurations:","breadcrumbs":"resolc user guide » Standard JSON interface » Standard JSON interface","id":"25","title":"Standard JSON interface"},"26":{"body":"Used to configure PVM specific compiler settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm object","id":"26","title":"The settings.polkavm object"},"27":{"body":"A boolean value allowing to enable debug information. Corresponds to resolc -g.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.debugInformation","id":"27","title":"settings.polkavm.debugInformation"},"28":{"body":"A boolean value allowing to enable the experimental newyork IR pipeline for Yul lowering. Corresponds to resolc --newyork. Off by default. The output JSON includes which pipeline actually ran, via the top-level resolc_pipeline field ( \\"newyork\\" or \\"yul\\" for the standard Yul-to-LLVM pipeline).","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.newyork","id":"28","title":"settings.polkavm.newyork"},"29":{"body":"Used to apply PVM specific memory configuration settings. settings.polkavm.memoryConfig.heapSize A numerical value allowing to configure the contract heap size. Corresponds to resolc --heap-size. settings.polkavm.memoryConfig.stackSize A numerical value allowing to configure the contract stack size. Corresponds to resolc --stack-size.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm.memoryConfig object","id":"29","title":"The settings.polkavm.memoryConfig object"},"3":{"body":"This mdBook documents the revive Solidity compiler project. The content is found under book/. Run make book to observe changes.","breadcrumbs":"Welcome » About","id":"3","title":"About"},"30":{"body":"The settings.optimizer object is augmented with support for PVM specific optimization settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.optimizer object","id":"30","title":"The settings.optimizer object"},"31":{"body":"A single char value to configure the LLVM optimizer settings. Corresponds to resolc -O.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.optimizer.mode","id":"31","title":"settings.optimizer.mode"},"32":{"body":"Allows to specify arbitrary command line arguments to LLVM initialization. Used mainly for development and debugging purposes.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.llvmArguments","id":"32","title":"settings.llvmArguments"},"33":{"body":"Used to select desired outputs.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.outputSelection object","id":"33","title":"The settings.outputSelection object"},"34":{"body":"Resolc supports the “all” ( *) wildcard for the file-level (first-level) and contract-level (second-level) keys. A file-level key can be either the wildcard or a specific file name, whereas the contract-level key can only be the wildcard for robustness reasons. Thus, output can be requested in 2 ways: // All files and all contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"*\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] } } }\\n} // Specific files and all their contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file.sol\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] }, // Rest of files... } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The “all” ( *) wildcard","id":"34","title":"The “all” ( *) wildcard"},"35":{"body":"Note Currently, resolc supports requesting either the full evm output, or one more level of specificity, such as evm.bytecode. When requesting code generation, such as evm.bytecode or evm.assembly, the resolc compilation process additionally needs ast, metadata, irOptimized, and evm.methodIdentifiers selectors. These selectors will be automatically added if code generation is needed, but will only be included in the output if explicitly requested. { \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file1.sol\\": { // Contracts in this file will generate bytecode. // Only these fields of the JSON output selection will be in the `contracts` output. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\", \\"evm.bytecode\\"], // Only this field of the JSON output selection will be in the `sources` output. \\"\\": [\\"ast\\"] }, \\"path/to/my/file2.sol\\": { // No contracts in this file will generate bytecode. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\"], // No `ast` will be in the `sources` output (only the automatically added `id`, // similar to solc as this is not a configurable output selection). \\"\\": [] }, } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The contract-level evm output selection","id":"35","title":"The contract-level evm output selection"},"36":{"body":"This section highlights some potentially observable differences in the YUL EVM dialect translation compared to Ethereum Solidity. Solidity developers deploying dApps to pallet-revive ought to read and understand this section well.","breadcrumbs":"resolc user guide » Differences to EVM » Differences to EVM","id":"36","title":"Differences to EVM"},"37":{"body":"Our contract runtime does not differentiate between runtime code and deploy (constructor) code.\\nInstead, both are emitted into a single PVM contract code blob and live on-chain.\\nTherefore, in EVM terminology, the deploy code equals the runtime code. Tip In constructor code, the codesize instruction will return the call data size instead of the actual code blob size.","breadcrumbs":"resolc user guide » Differences to EVM » Deploy code vs. runtime code","id":"37","title":"Deploy code vs. runtime code"},"38":{"body":"We are aware of the following differences in the translation of Solidity code.","breadcrumbs":"resolc user guide » Differences to EVM » Solidity","id":"38","title":"Solidity"},"39":{"body":"pallet-revive doesn’t apply the 63/64 gas rule. We strongly advice to change any code calling untrusted contracts to supply a limited amount of gas only!","breadcrumbs":"resolc user guide » Differences to EVM » The 63/64 gas rule","id":"39","title":"The 63/64 gas rule"},"4":{"body":"resolc is a Solidity v0.8 compiler for Polkadot native smart contracts. Solidity compiled with resolc targets PolaVM (PVM). Thanks to additional compiler optimizations and the PVM JIT, contract code can execute much faster than the EVM equivalent. resolc supports almost all Solidity v0.8 features including inline assembly, offering a high level of comptability with the Ethereum Solidity reference implementation.","breadcrumbs":"resolc user guide » resolc user guide","id":"4","title":"resolc user guide"},"40":{"body":"This returns the bytecode keccak256 hash instead.","breadcrumbs":"resolc user guide » Differences to EVM » address.creationCode","id":"40","title":"address.creationCode"},"41":{"body":"The below list contains noteworthy differences in the translation of YUL functions. Note Many functions receive memory buffer offset pointer or size arguments. The PVM pointer size is 32 bit, supplying memory offset or buffer size values above 2^32-1 may lead to OutOfGas errors trap contract execution. The solc compiler ought to always emit valid memory references, so Solidity dApp authors don’t need to worry about this unless they deal with low level assembly code.","breadcrumbs":"resolc user guide » Differences to EVM » YUL functions","id":"41","title":"YUL functions"},"42":{"body":"In general, revive preserves the memory layout, meaning low level memory operations are supported. However, a few caveats apply: The EVM linear heap memory is emulated using a fixed byte buffer of 128kb. This implies that the maximum memory a contract can use is limited to 128kb (on Ethereum, contract memory is capped by gas and therefore varies). Thus, accessing memory offsets larger than the fixed buffer size will trap the contract at runtime with an OutOfBound error. The compiler might detect and optimize unused memory reads and writes, leading to a different msize compared to what the EVM would see.","breadcrumbs":"resolc user guide » Differences to EVM » mload, mstore, msize, mcopy (memory related functions)","id":"42","title":"mload, mstore, msize, mcopy (memory related functions)"},"43":{"body":"In the constructor code, the offset is ignored and this always returns 0. Warning pallet-revive restricts the calldata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » calldataload, calldatacopy","id":"43","title":"calldataload, calldatacopy"},"44":{"body":"Only supported in constructor code.","breadcrumbs":"resolc user guide » Differences to EVM » codecopy","id":"44","title":"codecopy"},"45":{"body":"Deployments on revive work different than on EVM. In a nutshell: Instead of supplying the deploy code concatenated with the constructor arguments (the EVM deploy model), the revive runtime expects two pointers: A buffer containing the code hash to deploy. The constructor arguments buffer. To make contract instantiation using the new keyword in Solidity work seamlessly, revive translates the dataoffset and datasize instructions so that they assume the contract hash instead of the contract code.\\nThe hash is always of constant size.\\nThus, revive is able to supply the expected code hash and constructor arguments pointer to the runtime. Warning This might fall apart in code creating contracts inside assembly blocks. We strongly discourage using the create family opcodes to manually craft deployments in assembly blocks! Usually, the reason for using assembly blocks is to save gas, which is likely futile on revive due to the underlying differences in the VM architectures, gas models and transaction costs.","breadcrumbs":"resolc user guide » Differences to EVM » create, create2","id":"45","title":"create, create2"},"46":{"body":"Returns the contract hash.","breadcrumbs":"resolc user guide » Differences to EVM » dataoffset","id":"46","title":"dataoffset"},"47":{"body":"Returns the contract hash size (constant value of 32).","breadcrumbs":"resolc user guide » Differences to EVM » datasize","id":"47","title":"datasize"},"48":{"body":"pallet-revive restricts the returndata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » revert, return","id":"48","title":"revert, return"},"49":{"body":"Translates to a constant value of 2500000000000000.","breadcrumbs":"resolc user guide » Differences to EVM » prevrandao, difficulty","id":"49","title":"prevrandao, difficulty"},"5":{"body":"revive is the name of the overarching “Solidity to PolkaVM” compiler project, which contains multiple components (for example the Yul parser, the code generation library, the resolc executable itself, and many more things). resolc is the name of the compiler driver executable, combining many revive components in a single and easy to use binary application. In other words, revive is the whole compiler infrastructure (more like LLVM) and resolc is a user-facing single-entrypoint compiler frontend (more like clang).","breadcrumbs":"resolc user guide » revive vs. resolc nomenclature","id":"5","title":"revive vs. resolc nomenclature"},"50":{"body":"Only valid to use in EVM (they also have no use case in PVM) and produce a compile time error.","breadcrumbs":"resolc user guide » Differences to EVM » pc, extcodecopy","id":"50","title":"pc, extcodecopy"},"51":{"body":"Related to the Ethereum rollup model and produce a compile time error. Polkadot offers a superior rollup model, removing the use case for blob data related opcodes.","breadcrumbs":"resolc user guide » Differences to EVM » blobhash, blobbasefee","id":"51","title":"blobhash, blobbasefee"},"52":{"body":"There are two different compilation pipelines available in solc and there are small differences between them. Since resolc processes the YUL IR, always assume the solc IR based codegen behavior for contracts compiled with the revive compiler.","breadcrumbs":"resolc user guide » Differences to EVM » Difference regarding the solc via-ir mode","id":"52","title":"Difference regarding the solc via-ir mode"},"53":{"body":"With via-ir, base constructors run before derived state variables are initialized: contract InnerContract { uint public innerConstructedStartTokenId; constructor() { innerConstructedStartTokenId = _startTokenId(); } function _startTokenId() internal view virtual returns (uint) { return 0; }\\n} contract Test is InnerContract { uint public START_TOKEN_ID = 1; constructor() InnerContract() { } function _startTokenId() internal view virtual override returns (uint) { return START_TOKEN_ID; }\\n} Here, innerConstructedStartTokenId in Test returns 0 (with legacy EVM codegen it’d return 1).","breadcrumbs":"resolc user guide » Differences to EVM » Example: State variable initialization order in inheritance","id":"53","title":"Example: State variable initialization order in inheritance"},"54":{"body":"Note This is not yet implemented but something for consideration on the roadmap. Solidity - tightly coupled to the EVM - introduces some inherent inefficiencies that are by design and either needs to be followed or can’t be easily worked around, even with efforts like better optimized compiler and VM implementations. This represents a technical dead end. So far the EVM sees no adoption beyond the blockchain industry. Chances are that the EVM end up deprecated for technical reasons (or maybe not and the RISC-V idea gets abandoned, who knows). PVM, however, is a general purpose VM. It supports LLVM based mainstream programming languages like Rust. It’s a common software engineering practice to compose applications from pieces written in multiple languages, using each to their own strength. For example, AI solutions traditionally use the python scripting language for convenient developer experience, while the underlying AI models get implemented in a lower level language such as C++. The same pattern can of course be applied to dApps, where we’d expect application specific languages like Solidity mixed with libraries implementing computationally complex algorithms in a lower level language. Business logic and user interfaces are naturally implemented as regular Solidity dApps which can include (link against) Rust libraries. Rust is a fast, safe low level language and the Polkadot SDK is written in Rust itself, making it an excellent choice. For example, ZK proof verifiers or expensive DeFi primitives would benefit greatly from Rust implementations. revive provides tooling support and a small Rust contracts SDK for seamless integration with Rust libraries.","breadcrumbs":"resolc user guide » Rust contract libraries » Rust contract libraries","id":"54","title":"Rust contract libraries"},"55":{"body":"Running contract code usually requires a blockchain node. While local dev nodes can be used, sometimes it’s just not desirable to do so. Instead, it can be much more convenient to run and debug contract code with a stripped down environment. This is where the revive-runner comes in handy. In a nutshell, it is a single-binary no-blockchain pallet-revive runtime.","breadcrumbs":"revive-runner sandbox » revive-runner sandbox","id":"55","title":"revive-runner sandbox"},"56":{"body":"Inside the root revive repository directory, install it from source (requires Rust installed): make install-revive-runner After installing, see revive-runner --help for usage help.","breadcrumbs":"revive-runner sandbox » Installation and usage","id":"56","title":"Installation and usage"},"57":{"body":"The standard RUST_LOG environment variable controls the log output from the contract execution. This includes revive runtime logs and PVM execution trace logs. Sometimes it’s convenient to have more fine granular insight. Some useful filters: RUST_LOG=runtime=trace: The pallet-revive runtime trace logs. RUST_LOG=polkavm=trace: Low level PolkaVM instruction tracing.","breadcrumbs":"revive-runner sandbox » Trace logs","id":"57","title":"Trace logs"},"58":{"body":"To avoid running the constract in an unitialized state, revive-runner automatically instantiates the contract before calling it (constructor arguments can be provided).","breadcrumbs":"revive-runner sandbox » Automatic contract instantiation","id":"58","title":"Automatic contract instantiation"},"59":{"body":"Suppose we want to trace the syscalls of the execution of a compiled contract file Flipper.pvm: RUST_LOG=runtime=trace revive-runner -f Flipper.pvm\\n[DEBUG runtime::revive] Contract memory usage: purgable=6144/3145728 KB baseline=103063/1572864\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] value_transferred(out_ptr: 4294836096) = Ok(()) gas_consumed: Weight { ref_time: 2937634, proof_size: 0 }\\n[TRACE runtime::revive::strace] call_data_copy(out_ptr: 131216, out_len: 0, offset: 0) = Ok(()) gas_consumed: Weight { ref_time: 4084483, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 0, data_ptr: 131216, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 0, data: [] })) gas_consumed: Weight { ref_time: 5510615, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: (empty), data: [] })\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 1, data_ptr: 131088, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 1, data: [] })) gas_consumed: Weight { ref_time: 2456669, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: REVERT, data: [] })","breadcrumbs":"revive-runner sandbox » Example","id":"59","title":"Example"},"6":{"body":"Building Solidity contracts for PolkaVM requires installing the following two compilers: solc: The Ethereum Solidity reference compiler implementation. resolc: The revive Solidity compiler YUL frontend and PolkaVM code generator.","breadcrumbs":"resolc user guide » Installation » Installation","id":"6","title":"Installation"},"60":{"body":"This chapter covers internal aspects of the compiler and helps contributors getting started with the revive codebase.","breadcrumbs":"Developer Guide » Developer guide","id":"60","title":"Developer guide"},"61":{"body":"The revive compiler is an open source software project and we gladly accept quality contributions from anyone!","breadcrumbs":"Developer Guide » Contributor guide » Contributor guide","id":"61","title":"Contributor guide"},"62":{"body":"A quick reference on how to build the Solidity compiler is maintained in the project’s README.md.","breadcrumbs":"Developer Guide » Contributor guide » Getting started","id":"62","title":"Getting started"},"63":{"body":"The Makefile comprehensively encapsulates all development aspects of this codebase. It is kept concise and readable. Please read and use it! You’ll learn for example: How to build and install a resolc development version. How to run tests and benchmarks. How to cross-compile resolc. As a general rule-of-thumb: If make test runs fine locally, chances for green CI pipelines are good.","breadcrumbs":"Developer Guide » Contributor guide » Using the Makefile","id":"63","title":"Using the Makefile"},"64":{"body":"For the most parts, revive is a rather standard Rust workspace codebase. There are some non-Rust dependencies, which sometimes complicates things a little bit. The crates/ dir All Rust crates live under the crates/ directory. The workspace automatically considers any crate found therein. If you need to add a new create, please implement it there. Compiler library crates should be named with the revive- prefix. The crate location doesn’t need the prefix. Dependencies Dependencies should be added as workspace dependencies. Try to avoid pinning dependencies whenever possible. If possible, add dev dependencies as dev-dependencies only. Please do always include the Cargo.lock dependency lock file with your PR. Please don’t run cargo update together with other changes (it is preferred to update the lock file in a dedicated dependency update PR).","breadcrumbs":"Developer Guide » Contributor guide » Codebase organization","id":"64","title":"Codebase organization"},"65":{"body":"Changes must be submitted via a pull request (PR) to the github upstream repository. Ensure that your branch passes make test locally when submitting a pull request. A PR must not be merged until CI fully passes. Exceptions can be made (for example to fix CI issues itself). No force pushes to the main branch and open PR branches. Maintainers can request changes or deny contributions at their own discretion.","breadcrumbs":"Developer Guide » Contributor guide » Contribution rules","id":"65","title":"Contribution rules"},"66":{"body":"We require the official Rust formatter and clippy linter. In addition to that, please also consider the following best-effort aspects: Avoid magic numbers and strings. Instead, add them as module constants. Avoid abbreviated variable and function names. Always provide meaningful and readable symbols. Don’t write macros and don’t use third party macros for things that can easily be expressed in few lines of code or outlined into functions. Avoid import aliasing. Please use the parent or fully qualified path for conflicting symbols. Any inline comments must provide additional semantic meaning, explain counter-intuitive behavior or highlight non-obvious design decisions. In other words, try to make the code expressive enough to a degree it doesn’t need comments expressing the same thing again in the English language. Delete such comments if your AI assistant generated them. Public items must have a meaningful doc comment. Provide meaningful panic messages to .expect() or just use .unwrap().","breadcrumbs":"Developer Guide » Contributor guide » Style guide","id":"66","title":"Style guide"},"67":{"body":"Contributors may use whatever AI assistance tools they wish to whatever degree they wish in the process of creating their contribution, given they acknowledge the following: Project maintainers may reject any contribution (or portions of it) if the contribution shows signs of problematic involvement of generative AI. Judgement of “problematic involvement” lies at the sole discretion of project maintainers. No proof (whether a contribution was in fact AI generated or not) is required. Rationale: No one enjoys reading soulless and uncanny LLM slop. Please review and fix any AI slop yourself prior to submitting a PR. A Solidity compiler is security sensitive software. Even miniscule mistakes can ultimately lead to loss of funds. AI models are inherently stochastic. They regurarly fail to capture important nuances or produce straight hallucinations. Code that was “blindly” generated has no home here. revive is a large codebase. Generative AI assistants may not have enough “context window” to sufficiently capture correctness, consistency and style aspects of the codebase. We’d like to keep this codebase maintainable by humans for the forseeable future.","breadcrumbs":"Developer Guide » Contributor guide » AI policy","id":"67","title":"AI policy"},"68":{"body":"revive relies on solc, the Ethereum Solidity compiler, as the Solidity frontend to process smart contracts written in Solidity. LLVM, a popular and powerful compiler framework, is used as the compiler backend and does the heavy lifting in terms of optimizitations and RISC-V code generation. revive mainly takes care of lowering the Yul intermediate representation (IR) produced by solc to LLVM IR. This approach provides a good balance between maintaining a high level of Ethereum compatibility, good contract performance and feasible engineering efforts.","breadcrumbs":"Developer Guide » Compiler architecture » Compiler architecture and internals","id":"68","title":"Compiler architecture and internals"},"69":{"body":"resolc is the overarching compiler driver library and binary. When compiling a Solidity source file with resolc, the following steps happen under the hood: solc is used to lower the Solidity source code into YUL intermediate representation. revive lowers the YUL IR into LLVM IR. LLVM optimizes the code and emits a RISC-V ELF shared object (through LLD). The PolkaVM linker finally links the ELF shared object into a PolkaVM blob. This compilation process can be visualized as follows:","breadcrumbs":"Developer Guide » Compiler architecture » resolc","id":"69","title":"resolc"},"7":{"body":"resolc is supported an all major operating systems and installation is straightforward.\\nPlease find our binary releases for the following platforms: Linux (MUSL) MacOS (universal) Windows Wasm via emscripten","breadcrumbs":"resolc user guide » Installation » resolc binary releases","id":"7","title":"resolc binary releases"},"70":{"body":"Because on-chain contract code is identified via its code blob hash, it is crucial to maintain reproducible contract builds. A given compiler version must reproduce the contract build exactly on every target platform resolc supports via the official binary releases. To ensure this, we employ the following measures: The code generation must be fully deterministic. For example iterating over standard HashMap invalidates this due to its internal state, making it an invalid operation in revive. To circumvent that, a BTreeMap can be used instead. We release fully statically linked resolc binaries. This prevents dynamic linking of potentially differentiating libraries. The only non-bundled dependency is the solc compiler. This is considered fine because the same properties apply to solc.","breadcrumbs":"Developer Guide » Compiler architecture » Reproducible contract builds","id":"70","title":"Reproducible contract builds"},"71":{"body":"The main compiler logic is implemented in the revive-yul and revive-llvm-context crates. The Yul library implements a lexer and parser and lowers the resulting tree into LLVM IR. It does so by emitting LL using the LLVM builder and our own revive-llvm-context compiler context crate. The revive LLVM context crate encapsulates code generation logic (decoupled from the parser). The Yul library also implements a simple visitor interface (see visitor.rs). If you want to work with the AST, it is strongly recommended to implement visitors. The LLVM code generation is implemented using a dedicated trait for historical reasons only.","breadcrumbs":"Developer Guide » Compiler architecture » The revive compiler libraries","id":"71","title":"The revive compiler libraries"},"72":{"body":"PVM doesn’t offer a similar API. Hence the emitted contract code emulates the linear EVM heap memory using a static byte buffer. Data inside this byte buffer is kept big endian for EVM compatibility reasons (unaligned access is allowed and makes optimizing this non-trivial). Unlike with the EVM, where heap memory usage is gas metered, our heap size is static (the size is user controllable via a setting flag). The compiler emits bound checks to prevent overflows.","breadcrumbs":"Developer Guide » Compiler architecture » EVM heap memory","id":"72","title":"EVM heap memory"},"73":{"body":"LLVM is a special non Rust dependency. We interface its builder interface via the inkwell wrapper crate. We use upstream LLVM, but release and use our custom builds. We require the compiler builtins specifically built for the PVM rv64emacb target and always leave assertions on. Furthermore, we need cross builds because resolc itself targets emscripten and musl. The revive-llvm-builer functions as a cross-platform build script and is used to build and release the LLVM dependency. We also maintain the lld-sys crate for interfacing with LLD. The LLVM linker is used during the compilation process, but we don’t want to distribute another binary.","breadcrumbs":"Developer Guide » Compiler architecture » The LLVM dependency","id":"73","title":"The LLVM dependency"},"74":{"body":"An experimental newyork optimizer introduces a custom IR layer between Yul and LLVM IR to capture optimization opportunities that neither solc nor LLVM can realize on their own. solc optimizes for EVM gas on a 256-bit big-endian stack machine, while LLVM lacks the domain knowledge to understand EVM memory semantics or Solidity patterns. The newyork IR bridges this gap with passes for type narrowing, memory optimization, function deduplication, and more.","breadcrumbs":"Developer Guide » Compiler architecture » Custom optimizations","id":"74","title":"Custom optimizations"},"75":{"body":"The newyork crate ( crates/newyork/) introduces an additional intermediate representation (IR) layer between Yul and LLVM IR. It enables domain-specific optimizations that neither solc nor LLVM can perform on their own, because they lack semantic knowledge about the cross-domain compilation from EVM to PolkaVM. Note The newyork optimizer is experimental. It is gated behind the --newyork CLI flag or the settings.polkavm.newyork field in standard JSON input, and not yet enabled by default.","breadcrumbs":"Developer Guide » The newyork optimizer » The newyork optimizer","id":"75","title":"The newyork optimizer"},"76":{"body":"The EVM and PolkaVM are fundamentally different machines: Property EVM PolkaVM (RISC-V) Word size 256-bit 64-bit Endianness Big-endian Little-endian Architecture Stack machine Register-based Memory model Linear with free pointer convention Flat address space solc optimizes Yul IR for EVM gas costs on a 256-bit big-endian stack machine. LLVM, on the other hand, operates at too low a level to understand EVM memory semantics or Solidity patterns. By the time Yul reaches LLVM IR, the high-level intent is lost. The newyork IR sits between these two worlds and recovers enough semantic information to make optimization decisions that neither compiler can make alone.","breadcrumbs":"Developer Guide » The newyork optimizer » Motivation","id":"76","title":"Motivation"},"77":{"body":"┌──────────────────────────────────────────────────┐\\nYul AST ──────────► │ newyork IR │ ──► LLVM IR ──► RISC-V from_yul│ │ to_llvm │ 1. inline │ │ 2. simplify (pass 1) │ │ 3. dedup (exact + fuzzy) │ │ 4. mem_opt + fmp_prop + keccak_fold │ │ 5. simplify (pass 2) │ │ 6. mapping_access_outlining + guard_narrow │ │ 7. simplify (pass 3) │ │ 8. dedup (exact + fuzzy, pass 2) │ │ ── recursive on subobjects ── │ │ 9. type_inference (iterative narrowing) │ │ 10. late inline loop: inline, simplify, outline, │ │ guard-narrow, simplify, dedup, narrow │ │ 11. heap_opt (analysis) │ │ 12. validate │ └──────────────────────────────────────────────────┘ The optimizer runs the following passes in order: Inlining – custom heuristics tuned for PolkaVM call overhead, with Tarjan SCC-based recursion detection and quadratic leave-overhead modeling. Simplify (pass 1) – constant folding, algebraic identities, strength reduction ( mul by power-of-2 to shl), copy propagation, dead code elimination, environment read CSE ( callvalue, caller, origin, etc.), and revert pattern outlining (panic selectors, custom error selectors). Function deduplication – exact structural match, then fuzzy dedup (functions differing only in literal constants are parameterized and merged, up to 4 differing positions). Memory optimization – load-after-store elimination, keccak256 fusion ( mstore + keccak256 sequences into Keccak256Single/ Keccak256Pair nodes), free memory pointer propagation (replaces mload(0x40) with a known constant), and constant keccak256 folding (precomputes hashes of compile-time-constant inputs). Simplify (pass 2) – cleans up dead code and new constant expressions exposed by memory optimization and keccak folding. Compound outlining – detects keccak256_pair + sload/ sstore sequences and fuses them into MappingSLoad/ MappingSStore IR nodes, eliminating intermediate hash values. Guard narrowing – detects if gt(val, MASK) { revert } and iszero(eq(val, and(val, MASK))) patterns and inserts AND-mask narrowing, giving type inference proof that values fit in fewer bits. Simplify (pass 3) – propagates opportunities created by compound outlining and guard narrowing. Function deduplication (pass 2) – catches new duplicates exposed by guard narrowing and compound outlining canonicalization. Type inference – narrows 256-bit values to smaller widths ( I1, I8, I32, I64, I128, I160) where provable. Runs iteratively for up to 4 cascading refinement rounds, combining forward min-width propagation, backward use-context demands, transparent-operation demand propagation, and interprocedural parameter/return narrowing. Late inline loop – now that narrowing and simplification have shrunk wrapper functions below the inline thresholds, re-runs inlining, simplification, mapping access outlining, guard narrowing, deduplication, and type inference to collect the residual opportunities. Heap analysis – analyzes memory access patterns (alignment, static offsets, taintedness, escaping regions) to determine which accesses can use native little-endian layout, skipping byte-swap operations. Uses GCD-based alignment propagation and per-region taint tracking. Validation – checks SSA well-formedness (use-before-def, multiple definitions), yield count consistency, and function reference correctness. Steps 1-8 run recursively on subobjects (deployed contract code), where optimization impact is greatest. Steps 9-12 run on the full object tree.","breadcrumbs":"Developer Guide » The newyork optimizer » Pipeline overview","id":"77","title":"Pipeline overview"},"78":{"body":"The newyork IR is an SSA form with structured control flow, inspired by MLIR’s SCF dialect. Key design choices: Explicit types with address spaces: Every value carries a bit-width ( I1, I8, I32, I64, I128, I160, I256) and pointers carry address space information ( Heap, Stack, Storage, Code). All values start as I256 and are narrowed by type inference. Pure expressions vs. effectful statements: Expressions compute values without side effects; statements perform memory, storage, or control flow effects. This separation simplifies analysis and rewriting. Semantic annotations: Memory operations are tagged with region information ( Scratch, FreePointerSlot, Dynamic). Storage operations carry static slot values when known at compile time. Structured control flow: If, Switch, and For nodes preserve the high-level structure from Yul, with explicit region arguments and yields for value flow across control edges. For per-operation detail — printed syntax, operand and result types, and more — see the newyork IR reference.","breadcrumbs":"Developer Guide » The newyork optimizer » IR design","id":"78","title":"IR design"},"79":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Key optimizations explained","id":"79","title":"Key optimizations explained"},"8":{"body":"resolc uses solc during the compilation process, please refer to the Ethereum Solidity documentation for installation instructions.","breadcrumbs":"resolc user guide » Installation » Installing the solc dependency","id":"8","title":"Installing the solc dependency"},"80":{"body":"EVM operates on 256-bit words, but most values in practice fit in 32 or 64 bits. The type inference pass performs bidirectional analysis: Forward: computes minimum width from literal values and operation semantics (e.g., add(I64, I8) produces I65, rounded up to I128). Backward use tracking: classifies each value’s uses into 9 context categories ( MemoryOffset, MemoryValue, StorageAccess, Comparison, Arithmetic, FunctionArg, FunctionReturn, ExternalCall, General). All categories conservatively demand the full I256 width by default; the categorization is what enables the interprocedural phase to selectively relax the demand for narrowed function arguments. Earlier versions narrowed directly from the use category, but that was unsound for memory offsets — mload(2^128) aliased to mload(0) because the bounds check ran on an already-truncated value (commit ccca38df). Transparent demand propagation: for modular-arithmetic operations ( Add, Sub, Mul, And, Or, Xor), propagates narrow demands backward through operands, exploiting the property that trunc(op(a,b), N) == op(trunc(a,N), trunc(b,N)). Interprocedural: iteratively narrows function parameter and return types in up to four rounds, combining four narrowing strategies — body-driven parameter narrowing, caller-driven parameter narrowing, forward-based return narrowing, and demand-based return narrowing — and re-running full inference between rounds. Parameters are clamped to at least I32 (XLEN on PolkaVM). This allows LLVM to emit native 32/64-bit instructions instead of software-emulated 256-bit arithmetic, and eliminates expensive multi-instruction comparison sequences (16-20 RISC-V instructions for i256 comparisons reduced to 1-2 for i64).","breadcrumbs":"Developer Guide » The newyork optimizer » Type narrowing","id":"80","title":"Type narrowing"},"81":{"body":"Solidity emits runtime guards that prove values fit in narrow ranges (e.g., address validation via if gt(val, 2^160-1) { revert }). The guard narrowing pass detects these patterns and inserts explicit AND-mask narrowing after the guard. This gives downstream type inference proof that the value fits in fewer bits, enabling cascading narrowing of comparisons, arithmetic, and memory operations that use the guarded value. Two pattern families are recognized: GT-based guards: if gt(val, MASK) { } where MASK is a boundary value like 2^N - 1 EQ-based guards: iszero(eq(val, and(val, MASK))) patterns common in Solidity’s address validation","breadcrumbs":"Developer Guide » The newyork optimizer » Guard narrowing","id":"81","title":"Guard narrowing"},"82":{"body":"PVM doesn’t provide EVM-compatible linear memory, so the compiler emulates it using a byte buffer with byte-swap operations for big-endian compatibility. The heap analysis pass determines which memory accesses can use native little-endian layout by analyzing access patterns: Tracks alignment and static offset information for all memory accesses using GCD-based propagation Propagates taintedness when addresses escape to external calls, are written by external sources ( codecopy, calldatacopy), or use unaligned access patterns Tracks variable-accessed offsets to prevent mode mismatches between native and byte-swap accesses to the same location Handles loop-carried variables conservatively (marked as non-literal to prevent false constant propagation) The codegen backend supports four memory access modes: AllNative (all accesses skip byte-swap), InlineNative (constant-offset accesses use native layout), InlineByteSwap (constant-offset accesses use inline byte-swap), and ByteSwap (standard byte-swap through helper functions).","breadcrumbs":"Developer Guide » The newyork optimizer » Heap optimization","id":"82","title":"Heap optimization"},"83":{"body":"The Solidity free memory pointer ( mload(0x40)) always fits in 32 bits — sbrk enforces FMP < heap_size on every store, regardless of which memory mode the contract uses. After every literal mload(0x40), codegen emits a trunc N → zext 256 chain (where N is bits(heap_size - 1), e.g. 17 for the 131,072-byte default heap). The trunc-extend round-trip is a no-op semantically, but exposes the bound to LLVM’s IPSCCP range analysis, which then propagates it through every add(fmp, K) and eliminates the trailing safe_truncate_int_to_xlen overflow checks at every FMP-derived offset use. Despite only affecting a single codegen site, this is the single largest contributor to the optimizer’s code-size reduction. A subtle gating issue: the byte-order mode ( InlineNative / ByteSwap) and the value bound on FMP are independent invariants. fmp_native_safe() and can_use_native(0x40) protect against mixing little-endian writers with big-endian readers on the FMP slot, which would corrupt the stored offset; the value bound is unrelated and holds in every mode. Earlier versions of the codegen gated the load-side range proof on the byte-order checks, which suppressed the optimization for any contract with dynamic memory accesses. Decoupling the two reasonings — keeping the byte-order gate on the store side, dropping it from the load-side range proof — is what makes the multiplicative IPSCCP effect available to OZ-class contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Free memory pointer range proof","id":"83","title":"Free memory pointer range proof"},"84":{"body":"The FMP slot is small but easy to mis-optimize. The codebase carries several\\nregression tests for previously-found soundness bugs; new FMP-related changes\\nshould be verified against them: mload_at_fmp_slot ( crates/integration/src/tests.rs, fixed in 1fd6063c): tests mload(0x40) and offsets near it ( 0x21, 0x3f, 0x42)\\non a contract that also performs dynamic mloads. Catches byte-order mismatches\\nwhen one access goes native (LE) and another goes byte-swap (BE). The fix\\nblocks native mode for FMP whenever has_dynamic_accesses is true. mload_huge_offset_traps (fixed in ccca38df): tests that mload(2^128) and mload(2^255) correctly trap via the gas-exhaustion\\npath. Catches UseContext::MemoryOffset narrowing bypassing the safe_truncate_int_to_xlen overflow check at the use site — mload(2^128) aliasing to mload(0) and returning the zero-initialized\\nscratch slot. The fix classifies MemoryOffset as I256 so it doesn’t\\ndrive narrowing; the bounds check at the use site catches out-of-range. FMP i32 shortcut removal ( dbcfc921): an earlier optimization stored\\nonly 4 bytes at offset 0x40 instead of the full 32-byte EVM word, breaking\\nany inline assembly using mstore(0x40, ...) for non-FMP purposes.\\nCaused a cascade of 249/251 retester failures via allocator corruption.\\nNo dedicated regression test was added — the retester corpus was sufficient\\ncoverage — but the lesson generalizes: writes to 0x40 must store the full\\nword, even when the high bits are provably zero, because the slot is part\\nof the same 32-byte memory region read by other code. When adding an optimization that touches FMP, distinguish carefully between:\\nthe byte-order encoding at the slot (must be consistent between writers\\nand readers), the value bound (FMP < heap_size, always true), and the stored width (must be 32 bytes for mstore(0x40, ...), even though only\\nthe low N bits are non-zero). Known limitation: dynamic full-word stores to the FMP word The fmp_could_be_unbounded analysis flags a static mstore(0x40, untrusted) and any\\ndynamic-offset mstore8, but not a dynamic-offset full-word mstore. Such a store whose\\ni256 offset wraps (mod 2²⁵⁶) to the FMP word [0x40, 0x5f] overwrites the free pointer with an\\narbitrary value, which the load-side range proof would then truncate — a miscompile. This is a deliberate, documented gap rather than a bug fix because there is no cheap sound\\ndiscriminator. A store hits the FMP word iff its offset lands in [0x40, 0x5f], which is\\nin-bounds — safe_truncate_int_to_xlen only traps offsets ≥ heap_size — and 256-bit wrap lets\\nany computed add(base, k) reach 0x40 with an adversarial operand, so the offset cannot be\\nproven to miss the slot from width/range information. The only sound recognizer (treat add(fmp, small_const) as ≥ 0x80 by induction on FMP-boundedness) needs new FMP-derivation\\ndataflow, is fragile, and still misses dynamic-index array stores. Conservatively flagging every\\ndynamic full-word store (as the rare dynamic mstore8 does, where it is free) disables the FMP\\nrange proof for essentially every contract — measured at roughly +9% / +30 KB on the\\nOpenZeppelin corpus. The gap is unreachable from solc output: solc’s dynamic memory stores are all free-pointer-relative\\n( ≥ 0x80) and never target 0x40. Only hand-written Yul ( resolc --yul) with an offset\\nengineered to equal 0x40 reaches it.","breadcrumbs":"Developer Guide » The newyork optimizer » Soundness traps for FMP optimizations","id":"84","title":"Soundness traps for FMP optimizations"},"85":{"body":"Two complementary optimizations target the common Solidity pattern of hashing values for storage slot computation: Fusion: Recognizes mstore + keccak256 sequences and fuses them into dedicated IR nodes ( Keccak256Single, Keccak256Pair), eliminating intermediate memory traffic. Constant folding: When all keccak256 inputs are compile-time constants, the hash is computed at compile time and replaced with a literal. Known limitation: constant-folding drops the fused-keccak scratch write-back The fused Keccak256Pair/ Keccak256Single helpers write their inputs back to scratch memory\\n( [0, 0x40) / [0, 0x20)), and fusion dead-eliminates the original mstores because that\\nwrite-back reproduces them. Constant-folding the fused node to a literal removes the helper, so the\\nscratch is left unwritten — a later mload from [0, 0x40) that the optimizer cannot forward\\n(across a region/call boundary) would read stale memory. This gap is deliberately left open: it is solc-unreachable (solc treats scratch as volatile and never\\nre-reads it as data after a keccak), and every sound fix is a code-size regression because the dropped\\nwrite-back means the current output is already short the stores (disabling the fold falls back to the\\nruntime keccak helper, +0.78% on the OZ corpus, with no later mem_opt pass to clean re-emitted\\nwrites). Only hand-written Yul that reads scratch after a constant-operand keccak across a boundary\\ncan observe it.","breadcrumbs":"Developer Guide » The newyork optimizer » Keccak256 fusion and folding","id":"85","title":"Keccak256 fusion and folding"},"86":{"body":"Solidity mapping accesses follow a predictable pattern: hash a key with a storage slot, then load/store the result. The compound outlining pass detects keccak256_pair(key, slot) followed by sload/ sstore and fuses them into MappingSLoad/ MappingSStore IR nodes. These are lowered to outlined helper functions ( __revive_mapping_sload, __revive_mapping_sstore) that combine the hash computation with the storage operation, eliminating intermediate values and redundant byte-swaps.","breadcrumbs":"Developer Guide » The newyork optimizer » Compound outlining (mapping access)","id":"86","title":"Compound outlining (mapping access)"},"87":{"body":"Solidity generates many near-identical functions that differ only in literal constants (e.g., error selectors, storage slot offsets). Fuzzy deduplication identifies such groups, parameterizes the differing literals (up to 4 positions), and replaces all copies with calls to a single shared implementation.","breadcrumbs":"Developer Guide » The newyork optimizer » Fuzzy function deduplication","id":"87","title":"Fuzzy function deduplication"},"88":{"body":"The simplify pass detects common revert patterns and replaces them with compact IR nodes: Panic reverts: Solidity Panic(uint256) sequences (selector 0x4e487b71 + encoded panic code) are collapsed into PanicRevert { code } nodes, which are lowered to shared helper functions. Custom error reverts: ABI-encoded custom error reverts with known selectors are collapsed into CustomErrorRevert { selector, args } nodes. These patterns appear dozens of times in typical contracts, and outlining them into shared blocks eliminates significant code duplication.","breadcrumbs":"Developer Guide » The newyork optimizer » Revert pattern outlining","id":"88","title":"Revert pattern outlining"},"89":{"body":"The LLVM codegen backend generates approximately 15 types of outlined helper functions for common operations: Storage: __revive_sload_word, __revive_sstore_word (handle byte-swap internally) Mapping: __revive_mapping_sload, __revive_mapping_sstore (keccak256 + storage in one call) Callvalue: __revive_callvalue, __revive_callvalue_nonzero (boolean optimization for non-payable checks) Calldataload: __revive_calldataload (outlined when >= 20 call sites) Memory: __revive_store_bswap, __revive_exit_checked, __revive_return_word Errors: __revive_error_string_revert_N, __revive_custom_error_N (per data-word count) Keccak wrappers: __keccak256_slot_N (one noinline wrapper per constant slot, internally dispatching to __revive_keccak256_two_words) Additionally, common exit patterns (revert with constant length, zero-value returns) are deduplicated into shared LLVM basic blocks, saving hundreds of instruction copies in large contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Outlined helper functions","id":"89","title":"Outlined helper functions"},"9":{"body":"We distribute the revive compiler as node.js module.","breadcrumbs":"resolc user guide » Installation » revive NPM package","id":"9","title":"revive NPM package"},"90":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Codesize results","id":"90","title":"Codesize results"},"91":{"body":"Reproducible with cargo test --package revive-integration -- codesize for the Via Yul IR column ( crates/integration/codesize.json) and cargo test --package revive-integration --features newyork -- codesize for the Via newyork IR column ( crates/integration/codesize_newyork.json). Contract Via Yul IR (bytes) Via newyork IR (bytes) Reduction Baseline 838 493 −41.2% Computation 2,368 1,217 −48.6% DivisionArithmetics 11,444 7,370 −35.6% ERC20 18,057 8,726 −51.7% Events 1,614 909 −43.7% FibonacciIterative 1,373 969 −29.4% Flipper 2,205 1,058 −52.0% SHA1 7,830 6,264 −20.0%","breadcrumbs":"Developer Guide » The newyork optimizer » Integration test contracts","id":"91","title":"Integration test contracts"},"92":{"body":"Measured against real-world contracts generated with the OpenZeppelin Wizard. The numbers below are a development snapshot. Contract Via newyork IR (bytes) oz_gov 81,840 erc721 52,634 erc20 45,703 oz_stable 45,052 oz_rwa 41,581 erc1155 33,087 oz_simple_erc20 17,024 proxy 3,748 Total 320,669 For comparison, building the same contracts without the newyork optimizer at the equivalent snapshot produced 563,526 bytes total — a reduction of about −43% across the corpus. Per-contract reductions in the integration suite range from roughly −20% (SHA1, where the bulk of the work is the SHA-1 inner loop and offers little to optimize) to about −52% (Flipper, where the optimizer strips away most of Solidity’s dispatch and storage-access scaffolding).","breadcrumbs":"Developer Guide » The newyork optimizer » OpenZeppelin contracts","id":"92","title":"OpenZeppelin contracts"},"93":{"body":"The first version of the newyork optimizer was authored collaboratively and reviewed extensively by the revive maintainers, as well as Claude Opus, Claude Fable, Qwen, Minimax and Deepseek LLMs, over a span of many months — from early February 2026 through mid-June 2026. The development progressed through several distinct phases: Phase 1 – Initial scaffolding: The first draft established the core IR data structures, Yul-to-newyork-IR translation, and LLVM codegen. Early commits focused on getting a correct round-trip through the new pipeline. Phase 2 – Optimization passes: Once the baseline was stable, optimization passes were added iteratively: inlining, simplification, memory optimization, function deduplication, keccak256 fusion, and type inference. Each pass was validated against differential tests comparing EVM and PVM execution. Phase 3 – Soundness hardening: Several type inference and narrowing approaches turned out to be unsound and had to be reworked: An early type inference approach caused namespace collisions across subobjects and was scoped per-object. Caller-based parameter narrowing was polluted by overly aggressive inference and replaced with body-based structural analysis. Backward demand-driven narrowing required multiple iterations to become provably safe. Phase 4 – Measuring and tuning: Systematic measurement of OpenZeppelin contracts revealed which optimizations had the most impact and which approaches regressed performance. Throughout development the optimizer was validated against the existing integration and differential test suites (containing over 30,000 test cases), which run each contract on both EVM and PVM and assert identical state changes. The newyork compiler pipeline introduced no new regressions over these test suites. This was achieved by careful manual reviews and many LLM bughunt loops. Additionally, a final security review by Anthropic’s Fable 5 LLM found no remaining soundness issues. As with any new compiler feature, it should still be treated as experimental as of now.","breadcrumbs":"Developer Guide » The newyork optimizer » Development history and challenges","id":"93","title":"Development history and challenges"},"94":{"body":"Approach Outcome Storage bswap decomposition (4x bswap.i64) Regressed: LLVM handles bswap.i256 better natively NoInline on __revive_int_truncate +62% regression: PolkaVM call overhead exceeds inline cost Native FMP memory (inline sbrk) Mixed: small contracts improved, large ones regressed from sbrk bloat Shared overflow trap block Mixed: prevented LLVM from eliminating individual dead overflow checks Aggressive IR-level single-call inlining Regressed large contracts (ERC20 +6.1%): merged bodies become monolithic functions LLVM can’t optimize, so large functions are deferred to LLVM’s inliner instead Type-inference narrowing of mload(0x40) to I32 Regressed small contracts (+252 bytes): conflicts with the codegen FMP range proof; the bound is exposed via a trunc→zext pair instead Full simplifier re-run after mem_opt Mixed: helped small ERC20 (−293 bytes) but regressed the OZ stablecoin (+72 bytes); replaced by a targeted keccak-only fold These results highlight a recurring theme: interacting well with LLVM’s own optimization passes is critical. Optimizations at the IR level can inadvertently inhibit LLVM’s downstream passes, sometimes causing surprising regressions.","breadcrumbs":"Developer Guide » The newyork optimizer » Approaches that did not work","id":"94","title":"Approaches that did not work"},"95":{"body":"The following opportunities have been identified but are not yet implemented: Memory optimization across loop boundaries: Tracked memory state is cleared around for loop condition, body, and post blocks, so load-after-store eliminations do not carry across loop iterations. Preserving loop-invariant state would recover more eliminations. Adaptive inlining thresholds: Current thresholds are static constants. Profile-guided or contract-size-aware heuristics could improve decisions for diverse contract sizes. Extended fuzzy deduplication: The current pass only parameterizes literals in Let bindings and SStore slots. Extending it to consider literals inside MStore, Return, Revert, and Log statements would find more deduplication opportunities. Type checking in validation: The validator checks SSA well-formedness and structure, but not operation type consistency. Type discipline is maintained by construction (type inference and codegen), with LLVM’s IR verifier as the backstop. Loop variable narrowing: Loop-carried variables are conservatively widened to I256. Reaching a fixed-point across loop iterations could allow narrower types for simple counters. Functions with leave inside a for loop are not inlined: the IR-level inliner defers such functions to LLVM’s inliner, so they miss the interprocedural constant propagation and width narrowing the IR-level pass provides.","breadcrumbs":"Developer Guide » The newyork optimizer » Known limitations and future work","id":"95","title":"Known limitations and future work"},"96":{"body":"Passing --debug-output-dir makes the newyork pipeline write IR and analysis artifacts for each compiled contract into that directory. The dumps are produced automatically whenever the directory is set. File Content .newyork Final optimized IR, annotated with the inferred type widths .snapshot.newyork IR snapshot taken before the late passes (only when captured during translation) .heap.newyork Heap analysis summary (native regions/offsets, taintedness, escapes, dynamic accesses) .mem.newyork Memory optimization counters (loads/stores eliminated, keccak fusions, FMP loads eliminated)","breadcrumbs":"Developer Guide » The newyork optimizer » Debug output","id":"96","title":"Debug output"},"97":{"body":"Module Purpose lib.rs Pipeline orchestration and pass sequencing ir.rs Core IR data structures (types, expressions, statements, functions, objects) from_yul.rs Yul AST to newyork IR translation (two-pass with forward reference support) to_llvm.rs newyork IR to LLVM IR codegen with outlined helpers and narrowing simplify.rs Constant folding, algebraic identities, strength reduction, copy propagation, DCE, environment read CSE, revert outlining, callvalue hoisting, function deduplication (exact and fuzzy), constant keccak folding inline.rs Function inlining with PolkaVM-tuned heuristics (Tarjan SCC, leave elimination) type_inference.rs Bidirectional integer width narrowing with transparent demand propagation mem_opt.rs Load-after-store elimination, keccak256 fusion, FMP propagation heap_opt.rs Heap access pattern analysis, alignment tracking, byte-swap elimination mapping_access_outlining.rs Mapping access pattern detection and fusion ( keccak256_pair + sload/ sstore) guard_narrow.rs Guard pattern detection and AND-mask narrowing insertion validate.rs IR well-formedness checks (SSA, yields, function references) printer.rs Human-readable IR pretty printer with configurable output ssa.rs SSA construction helpers (scope management, phi-node merging)","breadcrumbs":"Developer Guide » The newyork optimizer » Module reference","id":"97","title":"Module reference"},"98":{"body":"A per-operation reference for the newyork IR: textual syntax, operand and result types, purity, region and static-slot annotations, and examples.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » newyork IR reference","id":"98","title":"newyork IR reference"},"99":{"body":"This reference page enumerates every operation the newyork IR supports. It is a lookup, not a walkthrough: each entry is self-contained and intended to be reachable by anchor. Operations are grouped by function (memory and storage writes, pure expressions, control flow, and so on) rather than alphabetically. Jump to a specific operation from the operation index below, or use the sidebar. Every operation appears in two places in the codebase. The canonical Rust definition is a variant of either Expression or Statement in ir.rs. The textual rendering used by debug dumps and by this reference page is produced by the printer in printer.rs. Note Treat the printed syntax as a debug surface, not a stable input language: there is no parser for it, and printer details change when passes add new annotations.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » How to read this reference","id":"99","title":"How to read this reference"}},"length":242,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"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":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.0},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"229":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.6457513110645907}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.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.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"227":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"235":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"240":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"241":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":1.0}},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":13,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"237":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":11,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.0},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":1.7320508075688772},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":2,"docs":{"229":{"tf":1.7320508075688772},"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"237":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":55,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":1.7320508075688772},"37":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":64,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":5,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"239":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"229":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"227":{"tf":2.23606797749979},"228":{"tf":3.0},"229":{"tf":2.6457513110645907},"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"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":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":24,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"240":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.1622776601683795},"207":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"228":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.0},"226":{"tf":2.0},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"234":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"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":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"183":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"240":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"241":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"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},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"240":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"231":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"240":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":67,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"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.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"229":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":5,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"228":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"231":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"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},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"50":{"tf":1.0}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"233":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"237":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"241":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.0}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"241":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"229":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"229":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"224":{"tf":1.0},"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"237":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"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":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"237":{"tf":1.0},"241":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"235":{"tf":1.4142135623730951},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"223":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979}}}}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"54":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"222":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":36,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"227":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"228":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"d":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.449489742783178},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.0},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"240":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"238":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":6,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":7,"docs":{"19":{"tf":3.605551275463989},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":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":{"102":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"230":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.0},"229":{"tf":2.0},"231":{"tf":3.0},"241":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.0}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.23606797749979},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"240":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"240":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"227":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":53,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"59":{"tf":1.0},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"76":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.0},"42":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"204":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"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},"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.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"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},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"240":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.0},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"93":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":28,"docs":{"12":{"tf":3.3166247903554},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.0},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":4,"docs":{"227":{"tf":1.0},"240":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"241":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.7320508075688772},"223":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":34,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"241":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"240":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"240":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"229":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"19":{"tf":1.0},"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"240":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"240":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"237":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"241":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"241":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"239":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979}},"s":{"/":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":1.7320508075688772},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"230":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":31,"docs":{"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"238":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":42,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":20,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"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":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"=":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"240":{"tf":1.0},"54":{"tf":2.8284271247461903},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"231":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.0}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":1.7320508075688772},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":14,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"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":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.0}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}},"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":2,"docs":{"240":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"240":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":2.449489742783178},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.0},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"229":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"234":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"230":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":4,"docs":{"225":{"tf":1.0},"229":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"232":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"223":{"tf":2.6457513110645907},"225":{"tf":3.4641016151377544},"226":{"tf":3.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.0},"231":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}},"y":{"\'":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":2.8284271247461903},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"151":{"tf":2.0},"228":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"238":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.0},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":55,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"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},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"231":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"234":{"tf":2.0},"237":{"tf":2.0},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"28":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"240":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":28,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":21,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":2.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"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":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"229":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.8284271247461903}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.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.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"227":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"45":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"235":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"240":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":2.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"241":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":1.0}},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":13,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"237":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":11,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.23606797749979},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":2.0},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":2,"docs":{"229":{"tf":1.7320508075688772},"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":2.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"237":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"11":{"tf":2.23606797749979},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":57,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":2.0},"37":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"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},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":66,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":5,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"239":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"229":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"227":{"tf":2.6457513110645907},"228":{"tf":3.1622776601683795},"229":{"tf":2.8284271247461903},"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"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":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"237":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":24,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":2.0},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"240":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":2.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.3166247903554},"207":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.7320508075688772}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"228":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":181,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.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.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.1622776601683795},"226":{"tf":2.23606797749979},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"234":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"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":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"183":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"240":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"241":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"231":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"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},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"240":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"231":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"240":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":79,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"234":{"tf":1.7320508075688772},"238":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"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.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"229":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":5,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"228":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"231":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.8284271247461903},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"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},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"238":{"tf":1.4142135623730951},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":7,"docs":{"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"237":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"241":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.4142135623730951}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"241":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"229":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.449489742783178},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"229":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"229":{"tf":1.0}}}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.8284271247461903},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":225,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"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.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"237":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.7320508075688772},"231":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"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":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"237":{"tf":1.0},"241":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.7320508075688772},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"235":{"tf":1.7320508075688772},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"6":{"tf":2.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979}}}}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":10,"docs":{"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.4142135623730951},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":24,"docs":{"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},"222":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":145,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"20":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.4142135623730951},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":2.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"227":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"228":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"d":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.6457513110645907},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"240":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"238":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":15,"docs":{"101":{"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},"227":{"tf":1.0},"229":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":7,"docs":{"19":{"tf":3.7416573867739413},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":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":{"102":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"230":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":27,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.0},"229":{"tf":2.0},"231":{"tf":3.0},"241":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.4142135623730951},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.449489742783178},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"240":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"240":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.4142135623730951}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.7320508075688772}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":2.0},"42":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"227":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":53,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":2.23606797749979},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.0},"59":{"tf":1.0},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"230":{"tf":1.0},"232":{"tf":2.0},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"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.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":149,"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"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.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"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":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"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},"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.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"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},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"240":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"93":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":157,"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},"12":{"tf":3.4641016151377544},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.23606797749979},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":4,"docs":{"227":{"tf":1.0},"240":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"241":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":2.23606797749979},"223":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":1,"docs":{"229":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":34,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"17":{"tf":1.0},"241":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"240":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"240":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"229":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":26,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":3.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"19":{"tf":1.0},"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"240":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"240":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"237":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":131,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"241":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"241":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"239":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979}},"s":{"/":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":2.0},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"230":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":61,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"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":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"238":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":43,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"240":{"tf":1.7320508075688772},"241":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":20,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"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":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"=":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"240":{"tf":1.0},"54":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":7,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"231":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":2.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":14,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"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":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"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":2,"docs":{"240":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"240":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.6457513110645907},"15":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.23606797749979},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.23606797749979},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"229":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"234":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"230":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":4,"docs":{"225":{"tf":1.0},"229":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"232":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":5,"docs":{"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.7320508075688772},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.23606797749979},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"223":{"tf":3.0},"224":{"tf":1.0},"225":{"tf":3.7416573867739413},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.0},"231":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":2.0},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}},"y":{"\'":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"229":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":3.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"151":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.23606797749979},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":2.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":55,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":56,"docs":{"1":{"tf":1.0},"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},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"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.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"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},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"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},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"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},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":2.0},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"231":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"234":{"tf":2.23606797749979},"237":{"tf":2.23606797749979},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"240":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":2.0},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"240":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":28,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":21,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"title":{"root":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"2":{"4":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"3":{"/":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"161":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}},"z":{"df":1,"docs":{"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":2,"docs":{"227":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":2,"docs":{"164":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"230":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"2":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"220":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.0},"45":{"tf":1.0}},"e":{"2":{"df":2,"docs":{"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"237":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"173":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"234":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"72":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"148":{"tf":1.0},"39":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"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":{"93":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"21":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":4,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"12":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"177":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"42":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"178":{"tf":1.0},"42":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":6,"docs":{"10":{"tf":1.0},"239":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"211":{"tf":1.0},"48":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"219":{"tf":1.0},"222":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"240":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":1,"docs":{"228":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"238":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":4,"docs":{"16":{"tf":1.0},"239":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"238":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"56":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"v":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"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":2,"docs":{"234":{"tf":1.0},"237":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"231":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"237":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}')); \ No newline at end of file diff --git a/docs/toc-1290cc30.js b/docs/toc-f74aae8e.js similarity index 97% rename from docs/toc-1290cc30.js rename to docs/toc-f74aae8e.js index 3e153969f..494e8b755 100644 --- a/docs/toc-1290cc30.js +++ b/docs/toc-f74aae8e.js @@ -8,7 +8,7 @@ class MDBookSidebarScrollbox extends HTMLElement { super(); } connectedCallback() { - this.innerHTML = '
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Cross compilation
  5. FAQ
  6. Roadmap and Vision
'; + this.innerHTML = '
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Code coverage
    7. Cross compilation
  5. FAQ
  6. Roadmap and Vision
'; // Set the current, active page, and reveal it if it's hidden let current_page = document.location.href.toString().split('#')[0].split('?')[0]; if (current_page.endsWith('/')) { diff --git a/docs/toc.html b/docs/toc.html index 844e542a0..bf053c32a 100644 --- a/docs/toc.html +++ b/docs/toc.html @@ -26,6 +26,6 @@ -
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Cross compilation
  5. FAQ
  6. Roadmap and Vision
+
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Code coverage
    7. Cross compilation
  5. FAQ
  6. Roadmap and Vision
diff --git a/docs/user_guide.html b/docs/user_guide.html index 67ce828bf..2a651eed1 100644 --- a/docs/user_guide.html +++ b/docs/user_guide.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/cli.html b/docs/user_guide/cli.html index 680408154..3ef3574b1 100644 --- a/docs/user_guide/cli.html +++ b/docs/user_guide/cli.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/differences.html b/docs/user_guide/differences.html index c0f682bda..0cc5cfd8c 100644 --- a/docs/user_guide/differences.html +++ b/docs/user_guide/differences.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/installation.html b/docs/user_guide/installation.html index c03efe2d7..df96f66a8 100644 --- a/docs/user_guide/installation.html +++ b/docs/user_guide/installation.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/js.html b/docs/user_guide/js.html index f5dce1754..bacf5b7b6 100644 --- a/docs/user_guide/js.html +++ b/docs/user_guide/js.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/rust_libraries.html b/docs/user_guide/rust_libraries.html index 8c1618dd8..fa043a2f5 100644 --- a/docs/user_guide/rust_libraries.html +++ b/docs/user_guide/rust_libraries.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/std_json.html b/docs/user_guide/std_json.html index 2372bdb69..d2bf1ea5f 100644 --- a/docs/user_guide/std_json.html +++ b/docs/user_guide/std_json.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/user_guide/tooling.html b/docs/user_guide/tooling.html index e3cdb34a0..45c44ad57 100644 --- a/docs/user_guide/tooling.html +++ b/docs/user_guide/tooling.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-57ec751f.js"; - +
diff --git a/docs/welcome.html b/docs/welcome.html index f31e5e306..d52067a5e 100644 --- a/docs/welcome.html +++ b/docs/welcome.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-57ec751f.js"; - +
From e7fe102e7b84ae786d8f6c42db7d4ba1008a69e0 Mon Sep 17 00:00:00 2001 From: elle-j Date: Sun, 19 Jul 2026 17:09:53 +0200 Subject: [PATCH 12/12] Avoid `BasicBlockTooLarge` from inlined `__mulmod_barrett`. The branch-free body is one ~700-instruction polkavm basic block. The O1+ inliner concatenated one copy per call site, exceeding pallet-revive's instruction limit. `noinline` caps every block at the single-body size. --- crates/stdlib/stdlib.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stdlib/stdlib.ll b/crates/stdlib/stdlib.ll index cc33c6924..aca6b6ef4 100644 --- a/crates/stdlib/stdlib.ll +++ b/crates/stdlib/stdlib.ll @@ -548,7 +548,7 @@ slow: ; Quotient bound: upper -- q3 <= (x/2^255)(2^512/m)/2^257 = x/m, so q3 <= q ; and r0 >= 0; lower -- q1 > x/2^255 - 1 and mu > 2^512/m - 1 give ; q1*mu/2^257 > x/m - x/2^512 - 2^255/m + 2^-257 > x/m - 2, so q3 >= q - 2. -define i256 @__mulmod_barrett(i256 %a, i256 %b, i256 %m, i256 %mu_lo) #0 { +define i256 @__mulmod_barrett(i256 %a, i256 %b, i256 %m, i256 %mu_lo) noinline #0 { entry: %aw = zext i256 %a to i512 %bw = zext i256 %b to i512